1
0
forked from GitHub/gf-rgl
Files
gf-rgl/Makefile
2018-11-28 13:54:56 +01:00

22 lines
296 B
Makefile

# A simple wrapper over the Haskell-based RGL build script
RUNMAKE=runghc Setup.hs
.PHONY: build copy install doc clean
default: build copy
build: src/*/*.gf
$(RUNMAKE) build
copy:
$(RUNMAKE) copy
install: build copy
doc: build
make -C doc GF_LIB_PATH=../dist
clean:
$(RUNMAKE) clean