install target now installs gfdoc

This commit is contained in:
bringert
2004-06-22 14:59:04 +00:00
parent 6ef6e73ba2
commit 79f3c8563e

View File

@@ -129,9 +129,16 @@ install-gf2:
$(INSTALL) -d $(bindir)
$(INSTALL) ../bin/gf2 $(bindir)
install: install-gf2
install-gfdoc:
$(INSTALL) -d $(bindir)
$(INSTALL) util/gfdoc $(bindir)
install-editor:
$(INSTALL) -d $(libdir)/GF-$(PACKAGE_VERSION)
$(INSTALL) jgf2 $(bindir)
$(INSTALL) java/gf-java.jar $(libdir)/GF-$(PACKAGE_VERSION)
install: install-gf2 install-gfdoc install-editor
gfdoc:
cd util ; $(GHMAKE) GFDoc.hs -o gfdoc ; cd ..