challenge-codinggame/Makefile

17 lines
202 B
Makefile
Raw Permalink Normal View History

2016-07-26 21:25:03 +00:00
ML_FILES=$(wildcard *.ml)
NATIVE_FILES=$(patsubst %.ml,%.native,$(ML_FILES))
all: build
build: $(NATIVE_FILES)
clean:
rm -f $(NATIVE_FILES)
%.native: %.ml
corebuild $@
.PHONY: all build clean