summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2019-12-02 18:02:37 -0500
committermrb0nk500 <b0nk@b0nk.xyz>2019-12-02 18:18:36 -0500
commit245940209d5b8458f5d998783f7992573e2951bf (patch)
treee928a56d70f1a54a00bfe5597aa9bd8c712113b0 /Makefile
parentcbad8aabbc82efbe7a49572a2da74224ae9c9f85 (diff)
Started implementing some pthreads support.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index df46e69..e4d801a 100644
--- a/Makefile
+++ b/Makefile
@@ -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 :