diff options
author | Camil Staps | 2018-12-24 00:02:35 +0100 |
---|---|---|
committer | Camil Staps | 2018-12-24 00:05:35 +0100 |
commit | 60dc2fefdfe2e311c656a3a3e9c6260f06d889ff (patch) | |
tree | c02f839b0d86c682c7f90c72c81d241f241dff27 /Makefile | |
parent | Initial commit (diff) |
Nicer output, add CI
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,10 +1,13 @@ CLM:=clm -CLMFLAGS:=-IL Platform +CLMFLAGS:=-IL Platform -nr -nt BIN:=sjit all: $(BIN) +test: $(BIN) + ./$< + $(BIN): %: %.icl Clean\ System\ Files/sjit_c.o .FORCE $(CLM) $(CLMFLAGS) $@ -o $@ @@ -15,6 +18,6 @@ Clean\ System\ Files/sjit_c.o: sjit_c.c clean: $(RM) -r $(BIN) Clean\ System\ Files -.PHONY: all clean +.PHONY: all test clean .FORCE: |