1
0
This commit is contained in:
dtb 2022-12-23 09:49:56 -05:00
parent d8fa412f3b
commit 9af70d4c39

11
simexec/Makefile Normal file
View File

@ -0,0 +1,11 @@
TARGETS = simexec
all: $(TARGETS)
clean:
rm -f $(TARGETS)
sane: all
%: %.c
$(CC) -o $@ $@.c
.PHONY: all clean sane