summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2019-12-06 17:25:13 -0500
committermrb0nk500 <b0nk@b0nk.xyz>2019-12-06 17:28:03 -0500
commit8d0f46d4e62af5d66ff3cce872256163a41b54bf (patch)
treeafe1b4a1b7de11db68e7329237cffb44bf1c5661 /Makefile
parentb4f547ecb600729e0e1b980c27c154b2a99bbca1 (diff)
Delete opcode.c, since I added all the functions
from it into sux.c.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index e4d801a..d2764cd 100644
--- a/Makefile
+++ b/Makefile
@@ -8,14 +8,12 @@ PCC_CFLAGS=
endif
CFLAGS = $(PCC_CFLAGS) $(CFLAGS_EXTRA)
-OBJS = asmmon.o opcode.o sux.o
+OBJS = asmmon.o sux.o
OBJ_NAME = cisc-0.2
all : $(OBJS)
$(CC) $(OBJS) $(CFLAGS) -lpthread -o $(OBJ_NAME)
sux.o :
$(CC) sux.c -c $(CFLAGS) -o sux.o
-opcode.o :
- $(CC) opcode.c -c $(CFLAGS) -o opcode.o
asmmon.o :
$(CC) asmmon.c -c $(CFLAGS) -o asmmon.o
clean :