Changeset 385
- Timestamp:
- 04/19/05 20:55:19 (8 years ago)
- Location:
- trunk/splitpipe
- Files:
-
- 4 modified
-
Makefile (modified) (3 diffs)
-
doc/Makefile (modified) (1 diff)
-
website/Makefile (modified) (1 diff)
-
website/asciidoc.conf (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/splitpipe/Makefile
r384 r385 1 VERSION=0.2 -svn2 export VERSION 1 VERSION=0.2 2 CXXFLAGS=-Wall -g -O2 -DVERSION=\"$(VERSION)\" 3 3 4 OUTPUTDIR=splitpipe-$(VERSION)5 CXXFLAGS=-Wall -g -O2 -DVERSION=\"$(VERSION)\"6 4 PREFIX?=/usr/local/ 7 5 BINDIR?=$(DESTDIR)/$(PREFIX)/bin/ 6 MANDIR?=$(DESTDIR)/usr/share/man/ 8 7 8 export VERSION MANDIR 9 9 10 all: splitpipe joinpipe 10 all: splitpipe joinpipe docs 11 11 12 12 # output of g++ -MM *.cc 13 13 joinpipe.o: joinpipe.cc misc.hh md5.hh 14 main.o: main.cc misc.hh 14 15 md5.o: md5.cc md5.hh 15 16 misc.o: misc.cc misc.hh 16 17 splitpipe.o: splitpipe.cc misc.hh ringbuffer.hh md5.hh 17 18 19 docs: 20 cd doc; make 18 21 19 22 clean: … … 29 32 30 33 joinpipe: splitpipe 31 ln - f splitpipe joinpipe34 ln -sf splitpipe joinpipe 32 35 33 36 check: all 34 37 cd tests; make 35 38 39 OUTPUTDIR=splitpipe-$(VERSION) 36 40 dist: 37 41 rm -rf $(OUTPUTDIR) … … 43 47 rm -rf $(OUTPUTDIR) 44 48 45 install: 49 install: all 46 50 install -s splitpipe $(BINDIR) 47 ln -f $(BINDIR)/splitpipe $(BINDIR)/joinpipe 51 ln -sf $(BINDIR)/splitpipe $(BINDIR)/joinpipe 52 cd doc; make install 53 54 -
trunk/splitpipe/doc/Makefile
r382 r385 5 5 mkdir ../splitpipe-$(VERSION)/doc 6 6 cp Makefile *.txt *.html *.[15] ../splitpipe-$(VERSION)/doc 7 8 install: all 9 install splitpipe.1 $(MANDIR)/man1/ 10 install joinpipe.1 $(MANDIR)/man1/ 11 install splitpipe.5 $(MANDIR)/man5/ 7 12 8 13 # splitpipe.1.txt -> splitpipe.1.xml -> splitpipe.1 -
trunk/splitpipe/website/Makefile
r380 r385 1 all: index.html downloads.html documentation.html development.html faq.html bugs.html roadmap.html examples.html 1 all: index.html downloads.html documentation.html development.html faq.html \ 2 bugs.html roadmap.html examples.html changelog.html 2 3 3 4 %.html: %.txt -
trunk/splitpipe/website/asciidoc.conf
r379 r385 32 32 <a href="examples.html">Examples</a> 33 33 <a href="faq.html">FAQ</a> 34 <a href="changelog.html">ChangeLog</a> 34 35 <a href="downloads.html">Downloads</a> 35 36 <a href="documentation.html">Documentation</a>