diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-11-12 21:12:36 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-11-12 21:12:36 (GMT) |
commit | 8a5c51f2c968dee1283dce092e1ccc0d3df91f0e (patch) | |
tree | c055ae5f212c403dc425fc687a6e0c50ce812b0b /Makefile.in | |
parent | a2a1e97fd2b0e3045482aa46978ac2d0ae1c6e11 (diff) | |
download | Doxygen-8a5c51f2c968dee1283dce092e1ccc0d3df91f0e.zip Doxygen-8a5c51f2c968dee1283dce092e1ccc0d3df91f0e.tar.gz Doxygen-8a5c51f2c968dee1283dce092e1ccc0d3df91f0e.tar.bz2 |
Release-1.3.4-20031112
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index f668893..22a8cdf 100644 --- a/Makefile.in +++ b/Makefile.in @@ -73,11 +73,24 @@ docs: FORCE pdf: docs cd latex ; $(MAKE) +DISTFILES = Doxyfile libpng libmd5 addon tmake doc wintools examples bin lib objects \ + qtools src configure configure.bin Makefile.in Makefile.win_nmake.in \ + Makefile.win_make.in INSTALL make.bat LANGUAGE.HOWTO LICENSE PLATFORMS \ + VERSION packages + archive: clean - tar zcvf dx`date +%y%m%d`.tgz Doxyfile libpng libmd5 addon tmake doc wintools examples bin lib objects \ - qtools src configure configure.bin Makefile.in Makefile.win_nmake.in \ - Makefile.win_make.in INSTALL make.bat LANGUAGE.HOWTO LICENSE PLATFORMS \ - VERSION packages + tar zcvf dx`date +%y%m%d`.tgz $(DISTFILES) + +DISTDIR = doxygen-`echo $(VERSION) | tr - _` + +dist: clean + rm -rf $(DISTDIR) + mkdir $(DISTDIR) + cp -a $(DISTFILES) README $(DISTDIR) + find $(DISTDIR) \( -name "CVS" -o -name ".cvsignore" \) \ + -print0 | xargs -0 rm -rf + tar zcvf $(DISTDIR).src.tar.gz $(DISTDIR) + rm -rf $(DISTDIR) src/version.cpp: Makefile echo "char versionString[]=\"$(VERSION)\";" > src/version.cpp |