diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 1999-12-15 19:36:24 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 1999-12-15 19:36:24 (GMT) |
commit | a54eecdf4b3c961ff41bc5d3ea6f21713e08f903 (patch) | |
tree | c32965e6b0858adc9a1f108b7b4d909568efd52e /Makefile.in | |
parent | 1d4e23de96d6e6065089a909ccba321fe5fa7f28 (diff) | |
download | Doxygen-a54eecdf4b3c961ff41bc5d3ea6f21713e08f903.zip Doxygen-a54eecdf4b3c961ff41bc5d3ea6f21713e08f903.tar.gz Doxygen-a54eecdf4b3c961ff41bc5d3ea6f21713e08f903.tar.bz2 |
mods for doxygen-0.49-991003
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/Makefile.in b/Makefile.in index 4555685..15e5caf 100644 --- a/Makefile.in +++ b/Makefile.in @@ -19,17 +19,18 @@ distclean: clean install: $(INSTTOOL) -d $(INSTALL)/bin - $(INSTTOOL) -d $(INSTALL)/share/doxygen/doc - $(INSTTOOL) -d $(INSTALL)/share/doxygen/examples + $(INSTTOOL) -d $(INSTALL)/doc/doxygen + $(INSTTOOL) -d $(INSTALL)/doc/doxygen $(INSTTOOL) -m 755 bin/doxy* $(INSTALL)/bin - cp -r doc $(INSTALL)/share/doxygen - cp -r examples $(INSTALL)/share/doxygen - echo "DOXYGEN = $(INSTALL)" > $(INSTALL)/share/doxygen/doc/Makefile - echo "DOXYDOCS = $(INSTALL)/share/doxygen" >> $(INSTALL)/share/doxygen/doc/Makefile - echo "VERSION = $(VERSION)" >> $(INSTALL)/share/doxygen/doc/Makefile - cat doc/Makefile.in >> $(INSTALL)/share/doxygen/doc/Makefile - cd $(INSTALL)/share/doxygen/examples ; $(MAKE) - cd $(INSTALL)/share/doxygen/doc ; $(MAKE) + cp -r doc $(INSTALL)/doc/doxygen + cp -r examples $(INSTALL)/doc/doxygen + echo "DOXYGEN = $(INSTALL)" > $(INSTALL)/doc/doxygen/doc/Makefile + echo "DOXYDOCS = .." >> $(INSTALL)/doc/doxygen/doc/Makefile + echo "VERSION = $(VERSION)" >> $(INSTALL)/doc/doxygen/doc/Makefile + cat doc/Makefile.in >> $(INSTALL)/doc/doxygen/doc/Makefile + cd $(INSTALL)/doc/doxygen/examples ; $(MAKE) + cd $(INSTALL)/doc/doxygen/doc ; $(MAKE) + rm -rf $(INSTALL)/doc/doxygen/doc docs: FORCE cd examples ; $(MAKE) @@ -38,10 +39,13 @@ docs: FORCE ps: docs cd latex ; $(MAKE) +pdf: docs + cd latex ; $(MAKE) + archive: distclean tar zcvf dx`date +%y%m%d`.tgz tmake doc wintools examples bin objects \ - src configure Makefile.in Makefile.win.in INSTALL make.bat \ - LANGUAGE.HOWTO LICENSE PLATFORMS VERSION + src configure configure.bin Makefile.in Makefile.win.in INSTALL \ + make.bat LANGUAGE.HOWTO LICENSE PLATFORMS VERSION src/version.cpp: Makefile echo "char versionString[]=\"$(VERSION)\";" > src/version.cpp |