Commit e2b4a623 authored by dimitri's avatar dimitri
Browse files

Release-1.1.2-20000423

parent 0e7fba15
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
DOXYGEN Version 1.1.2-20000417
DOXYGEN Version 1.1.2-20000423

CONTENTS
--------
@@ -15,8 +15,8 @@ INSTALLATION INSTRUCTIONS FOR UNIX:

1.  Unpack the archive, unless you already have:
   
     gunzip doxygen-1.1.2-20000417.src.tar.gz    # uncompress the archive
     tar xf doxygen-1.1.2-20000417.src.tar       # unpack it
     gunzip doxygen-1.1.2-20000423.src.tar.gz    # uncompress the archive
     tar xf doxygen-1.1.2-20000423.src.tar       # unpack it

2.  Run the configure script:
 
@@ -252,4 +252,4 @@ The latest version of doxygen can be obtained at

Enjoy,

Dimitri van Heesch (17 April 2000)
Dimitri van Heesch (23 April 2000)
+16 −6
Original line number Diff line number Diff line

all: src/version.cpp
all: src/version.cpp configgen doxywizard
	cd src ; $(MAKE)

clean: FORCE
	cd examples ; $(MAKE) clean
	cd doc ; $(MAKE) clean
	cd src ; $(MAKE) clean
	cd addon/configgen ; $(MAKE) clean
	cd addon/doxywizard ; $(MAKE) clean
	-rm -f bin/doxy*
	-rm -f objects/*.o

@@ -13,18 +15,25 @@ distclean: clean
	cd examples ; $(MAKE) clean
	cd doc ; $(MAKE) clean
	cd src ; $(MAKE) distclean
	cd addon/configgen ; $(MAKE) distclean
	cd addon/doxywizard ; $(MAKE) distclean
	-rm -f bin/doxy*
	-rm -f html
	-rm -f objects/*.o
	-rm -f src/Makefile.doxygen \
	       src/Makefile.doxytag \
	       src/Makefile.doxysearch
	-rm -f src/Makefile.doxygen src/Makefile.doxytag src/Makefile.doxysearch
	-rm -f Makefile src/Makefile examples/Makefile doc/Makefile
	-rm -f .makeconfig .tmakeconfig
	-rm -f src/doxygen.pro src/doxytag.pro src/doxysearch.pro
	-rm -f src/version.cpp
	-rm -r addon/configgen/Makefile addon/doxywizard/Makefile
	-rm -f addon/configgen/Makefile.configgen 
	-rm -f addon/doxywizard/Makefile.doxywizard
	-rm -f addon/configgen/configgen.pro addon/doxywizard/doxywizard.pro
	-rm -f addon/configgen/obj/*.o
	-rm -f addon/doxywizard/obj/*.o
	-rm -f addon/doxywizard/moc/moc_*

install:
install: doxywizard_install
	$(INSTTOOL) -d $(INSTALL)/bin
	$(INSTTOOL) -d $(INSTALL)/doc/doxygen
	$(INSTTOOL) -d $(INSTALL)/doc/doxygen
@@ -52,7 +61,7 @@ pdf: docs
	cd latex ; $(MAKE)

archive: clean
	tar zcvf dx`date +%y%m%d`.tgz tmake doc wintools examples bin objects \
	tar zcvf dx`date +%y%m%d`.tgz addon tmake doc wintools examples bin objects \
	       src configure configure.bin Makefile.in Makefile.win.in INSTALL \
	       make.bat LANGUAGE.HOWTO LICENSE PLATFORMS VERSION packages

@@ -60,3 +69,4 @@ src/version.cpp: Makefile
	echo "char versionString[]=\"$(VERSION)\";" > src/version.cpp

FORCE:
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.1.2-20000417
DOXYGEN Version 1.1.2-20000423

Please read INSTALL for compilation instructions.

@@ -7,4 +7,4 @@ The latest version of doxygen can be obtained at

Enjoy,

Dimitri van Heesch (17 April 2000)
Dimitri van Heesch (23 April 2000)
+1 −1
Original line number Diff line number Diff line
1.1.2-20000417
1.1.2-20000423
+42 −0
Original line number Diff line number Diff line
#
# 
#
# Copyright (C) 1997-2000 by Dimitri van Heesch.
# 
# Permission to use, copy, modify, and distribute this software and its
# documentation under the terms of the GNU General Public License is hereby 
# granted. No representations are made about the suitability of this software 
# for any purpose. It is provided "as is" without express or implied warranty.
# See the GNU General Public License for more details.
# 

CFGGEN_DIR = bin

all: Makefile.configgen config.h config.l   
	$(MAKE) -f Makefile.configgen $@

Makefile.configgen: configgen.pro 
	$(PERL) $(TMAKE) configgen.pro >Makefile.configgen

config.h: $(CFGGEN_DIR)/configgen config_templ.h
	$(CFGGEN_DIR)/configgen config_templ.h >config.h

config.l: $(CFGGEN_DIR)/configgen config_templ.l
	$(CFGGEN_DIR)/configgen config_templ.l >config.l

$(CFGGEN_DIR)/configgen: Makefile.configgen configgen.cpp
	$(MAKE) -f Makefile.configgen 

tmake: 
	$(PERL) $(TMAKE) configgen.pro >Makefile.configgen

install:
	$(CP) config.l config.h ../../src

clean: Makefile.configgen 
	$(MAKE) -f Makefile.configgen clean 

distclean: clean
	$(RM) config.cpp config.h config.l Makefile.configgen

FORCE:
Loading