mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
added new Makefile in the top directory which calls Cabal for compilation
This commit is contained in:
24
Makefile
Normal file
24
Makefile
Normal file
@@ -0,0 +1,24 @@
|
||||
.PHONY: all gf install doc clean sdist lib
|
||||
|
||||
all: gf lib
|
||||
|
||||
dist/setup-config:
|
||||
runghc Setup.lhs configure
|
||||
|
||||
gf: dist/setup-config
|
||||
runghc Setup.lhs build
|
||||
|
||||
install:
|
||||
runghc Setup.lhs install
|
||||
|
||||
doc:
|
||||
runghc Setup.lhs haddock
|
||||
|
||||
clean:
|
||||
runghc Setup.lhs clean
|
||||
|
||||
sdist:
|
||||
runghc Setup.lhs sdist
|
||||
|
||||
lib:
|
||||
$(MAKE) -C lib/resource clean all
|
||||
Reference in New Issue
Block a user