diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2019-12-06 17:25:13 -0500 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2019-12-06 17:28:03 -0500 |
commit | 8d0f46d4e62af5d66ff3cce872256163a41b54bf (patch) | |
tree | afe1b4a1b7de11db68e7329237cffb44bf1c5661 /Makefile | |
parent | b4f547ecb600729e0e1b980c27c154b2a99bbca1 (diff) |
Delete opcode.c, since I added all the functions
from it into sux.c.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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 : |