mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 13:09:33 -06:00
+ Rename some txt2tags file from .txt to .t2t and remove abandoned .txt files. + Add program update_html that finds all .t2t documents and updates the corresponding .html file. It can be invoked with 'make html'. + Add style to some .html documents
29 lines
434 B
Makefile
29 lines
434 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
|
|
|
|
html::
|
|
bash bin/update_html
|