mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
28 lines
406 B
Makefile
28 lines
406 B
Makefile
.PHONY: all build install doc clean sdist
|
|
|
|
all: build
|
|
|
|
dist/setup-config: GF.cabal
|
|
chmod u+x lib/src/mkPresent
|
|
chmod u+x lib/src/mkMinimal
|
|
runghc Setup.hs configure
|
|
|
|
build: dist/setup-config
|
|
runghc Setup.hs build
|
|
|
|
install:
|
|
runghc Setup.hs install
|
|
|
|
doc:
|
|
runghc Setup.hs haddock
|
|
|
|
clean:
|
|
runghc Setup.hs clean
|
|
|
|
sdist:
|
|
runghc Setup.hs sdist
|
|
gf:
|
|
runghc Setup.hs build rgl-none
|
|
strip dist/build/gf/gf
|
|
|