oops - had forgotten Makefile from next-lib

This commit is contained in:
aarne
2008-10-08 08:28:39 +00:00
parent ab14205108
commit eba875c7d4

46
next-lib/src/Makefile Normal file
View File

@@ -0,0 +1,46 @@
RUNGHC=runghc
RUNMAKE=$(RUNGHC) Make.hs
.PHONY: all present alltenses lang api math prelude test demo synopsis link compiled clean
all: link prelude present alltenses compat
present:
$(RUNMAKE) present lang
$(RUNMAKE) present api
alltenses:
$(RUNMAKE) lang
$(RUNMAKE) api
lang:
$(RUNMAKE) lang
api:
$(RUNMAKE) api
compat:
$(RUNMAKE) present compat
prelude:
gfc prelude/*.gf
cp -p prelude/*.gfo ../prelude
test:
$(RUNMAKE) test
demo:
$(RUNMAKE) demo
synopsis:
cd doc ; $(RUNGHC) MkSynopsis ; cd ..
link:
chmod a+x mkPresent
compiled:
(cd .. && tar -zcf resource-compiled.tar.gz prelude alltenses present)
clean:
$(RUNMAKE) clean