summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2019-12-14 23:58:01 -0500
committermrb0nk500 <b0nk@b0nk.xyz>2019-12-14 23:58:01 -0500
commit0b81224b6ab8cd6da45039525962c6490ed2df56 (patch)
treea76bfa10ee6ae726efb212442a68c17b253b49ba /Makefile
parentc6d71bcf0e545a490fdeb0dfcafea2d5a02157c6 (diff)
We now have keyboard support!!!
I also added the WAI instruction, which puts the thread that executed it, into a catatonic stat, where it can't do anything, until an interrupt occurs. I will be starting work on GFsuX next. I also might start work on SuBAsm, the Sux Bootstrapping Assembler.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d2764cd..7266284 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,7 @@ CFLAGS = $(PCC_CFLAGS) $(CFLAGS_EXTRA)
OBJS = asmmon.o sux.o
OBJ_NAME = cisc-0.2
all : $(OBJS)
- $(CC) $(OBJS) $(CFLAGS) -lpthread -o $(OBJ_NAME)
+ $(CC) $(OBJS) $(CFLAGS) -lpthread -lcurses -o $(OBJ_NAME)
sux.o :
$(CC) sux.c -c $(CFLAGS) -o sux.o
asmmon.o :