From 8d0f46d4e62af5d66ff3cce872256163a41b54bf Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Fri, 6 Dec 2019 17:25:13 -0500 Subject: Delete opcode.c, since I added all the functions from it into sux.c. --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Makefile') 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 : -- cgit v1.2.3-13-gbd6f