astral-compiler/Makefile

21 lines
385 B
Makefile

# mill is the current build system
BS:=mill
# add things like `-w` or `-d` here for `make` to use them
BFLAGS:=
.PHONY: all clean compile check test
all: compile
clean:
$(BS) $(BFLAGS) clean
compile:
$(BS) $(BFLAGS) astral.catalyst.impl.compile
check:
$(BS) $(BFLAGS) astral.catalyst.impl.run
test:
$(BS) $(BFLAGS) astral.catalyst.impl.runMain com.astraldb.catalyst.TPCHTest