mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-10 05:29:30 -06:00
35 lines
378 B
Makefile
35 lines
378 B
Makefile
RUNGHC=runghc
|
|
RUNMAKE=$(RUNGHC) Make.hs
|
|
|
|
all: link present alltenses math
|
|
|
|
present:
|
|
$(RUNMAKE) present lang
|
|
$(RUNMAKE) present api
|
|
|
|
alltenses:
|
|
$(RUNMAKE) lang
|
|
$(RUNMAKE) api
|
|
|
|
lang:
|
|
$(RUNMAKE) lang
|
|
|
|
api:
|
|
$(RUNMAKE) api
|
|
|
|
math:
|
|
$(RUNMAKE) math
|
|
|
|
test:
|
|
$(RUNMAKE) test
|
|
|
|
synopsis:
|
|
cd doc ; $(RUNGHC) MkSynopsis ; cd ..
|
|
|
|
link:
|
|
chmod a+x mkPresent
|
|
|
|
clean:
|
|
$(RUNMAKE) clean
|
|
|