Commit c635cffd authored by dimitri's avatar dimitri
Browse files

Release-1.4.1-20050129

parent 13feb604
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.4.1
DOXYGEN Version 1.4.1-20050129

Please read the installation section of the manual 
(http://www.doxygen.org/install.html) for instructions.

--------
Dimitri van Heesch (09 January 2005)
Dimitri van Heesch (29 January 2005)
+6 −0
Original line number Diff line number Diff line
@@ -44,11 +44,17 @@ distclean: clean
	-rm -f addon/doxywizard/moc/moc_*
	-rm -f addon/doxywizard/config.cpp

DATE=$(shell date "+%B %Y")

install: doxywizard_install 
	$(INSTTOOL) -d $(INSTALL)/bin
	$(INSTTOOL) -m 755 bin/doxygen    $(INSTALL)/bin
	$(INSTTOOL) -m 755 bin/doxytag    $(INSTALL)/bin
	$(INSTTOOL) -d $(INSTALL)/man/man1
	cat doc/doxygen.1    | sed -e "s/DATE/\$(DATE)/g" -e "s/VERSION/$(VERSION)/g" > $(INSTALL)/man/man1/doxygen.1 ; \
	cat doc/doxytag.1    | sed -e "s/DATE/\$(DATE)/g" -e "s/VERSION/$(VERSION)/g" > $(INSTALL)/man/man1/doxytag.1 ; \
	cat doc/doxywizard.1 | sed -e "s/DATE/\$(DATE)/g" -e "s/VERSION/$(VERSION)/g" > $(INSTALL)/man/man1/doxywizard.1 ;


install_docs: install
	$(INSTTOOL) -d $(DOCDIR)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.4.1
DOXYGEN Version 1.4.1_20050129

Please read INSTALL for compilation instructions.

@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives.

Enjoy,

Dimitri van Heesch (dimitri@stack.nl) (09 January 2005)
Dimitri van Heesch (dimitri@stack.nl) (29 January 2005)
+1 −1
Original line number Diff line number Diff line
1.4.1
1.4.1-20050129
+2 −2
Original line number Diff line number Diff line
@@ -216,10 +216,10 @@ if (open(F,"<Makefile.libdoxygen.old")) {
  }
  print "Processing Makefile.libdoxygen...\n";
  while (<F>) {
    if ( s/\(LEX\) -P([a-z]+)YY -t $file/(LEX) -d -P\1YY -t $file/g ) {
    if ( s/\(LEX\) -P([a-zA-Z]+)YY -t $file/(LEX) -d -P\1YY -t $file/g ) {
      print "Enabling debug info for $file\n";
    }
    elsif ( s/\(LEX\) -d -P([a-z]+)YY -t $file/(LEX) -P\1YY -t $file/g ) {
    elsif ( s/\(LEX\) -d -P([a-zA-Z]+)YY -t $file/(LEX) -P\1YY -t $file/g ) {
      print "Disabling debug info for $file\n";
    }
    print G "$_";
Loading