From 9ccf8a561345641ad083d90b5f301ebcc7a61f47 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Sun, 23 Dec 2018 23:55:56 +0100 Subject: Initial commit --- Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c4dbdac --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +CLM:=clm +CLMFLAGS:=-IL Platform + +BIN:=sjit + +all: $(BIN) + +$(BIN): %: %.icl Clean\ System\ Files/sjit_c.o .FORCE + $(CLM) $(CLMFLAGS) $@ -o $@ + +Clean\ System\ Files/sjit_c.o: sjit_c.c + mkdir -p Clean\ System\ Files + $(CC) $(CFLAGS) -c $< -o '$@' + +clean: + $(RM) -r $(BIN) Clean\ System\ Files + +.PHONY: all clean + +.FORCE: -- cgit v1.2.3