diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2019-12-02 18:02:37 -0500 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2019-12-02 18:18:36 -0500 |
commit | 245940209d5b8458f5d998783f7992573e2951bf (patch) | |
tree | e928a56d70f1a54a00bfe5597aa9bd8c712113b0 /Makefile | |
parent | cbad8aabbc82efbe7a49572a2da74224ae9c9f85 (diff) |
Started implementing some pthreads support.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ CFLAGS = $(PCC_CFLAGS) $(CFLAGS_EXTRA) OBJS = asmmon.o opcode.o sux.o OBJ_NAME = cisc-0.2 all : $(OBJS) - $(CC) $(OBJS) $(CFLAGS) -o $(OBJ_NAME) + $(CC) $(OBJS) $(CFLAGS) -lpthread -o $(OBJ_NAME) sux.o : $(CC) sux.c -c $(CFLAGS) -o sux.o opcode.o : |