summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2020-02-20 18:18:50 -0500
committermrb0nk500 <b0nk@b0nk.xyz>2020-02-20 18:18:50 -0500
commit34b9bda535d475dd80fd70481fb7ba525b8c58bd (patch)
tree432202e64d1c943f46c0b2fee7402586e06d969b /Makefile
parent63d5046ecabd5fd1524d3c4bc4590176c3b8a4eb (diff)
Finished SuBAsm's screen editor.
Which I am now calling, SuBEditor.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index de1d6b5..6f6af84 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ OBJS = asmmon.o sux.o
OBJ_NAME = cisc-0.2
all : clean $(OBJ_NAME)
cisc-0.2: $(OBJS)
- $(CC) $(OBJS) $(CFLAGS) -lpthread -lcurses -o $(OBJ_NAME)
+ $(CC) $(OBJS) $(CFLAGS) -lpthread -lcurses -ltinfo -o $(OBJ_NAME)
sux.o :
$(CC) sux.c -c $(CFLAGS) -o sux.o
asmmon.o :