From: Hans F. <fu...@us...> - 2004-06-25 04:27:26
|
Update of /cvsroot/neelix/neelix In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9681 Modified Files: Makefile Log Message: Adding stuff (except ingredient) works Index: Makefile =================================================================== RCS file: /cvsroot/neelix/neelix/Makefile,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- Makefile 20 Jun 2004 15:15:07 -0000 1.6 +++ Makefile 25 Jun 2004 04:27:17 -0000 1.7 @@ -1,9 +1,9 @@ -all: qt db/hans.db +all: qt db qt: make -C view/qt -#%: -# make -C db $@ +db: + make -C db hans.db # this assumes the current debian package name (rdoc plain seems to conflict # with ri plain and I can't live without ri) @@ -11,7 +11,13 @@ # I'm assuming dot is available to make the cool relation graphs. (-d) rdoc=rdoc1.8 doc: - $(rdoc) -d -o doc model/*.rb view/*.rb presenter/*.rb *.rb - if [ $(USER) = fugalh ]; then rsync -r doc shell.sf.net:neelix/htdocs/rdoc; fi + $(rdoc) -d -o rdoc model/*.rb view/qt/*.rb presenter/*.rb *.rb -.PHONY: doc all qt +web: doc + rsync -rv rdoc screenshot.png shell.sf.net:neelix/htdocs + +clean: + rm -rf doc + make -C db clean + +.PHONY: doc all qt web db clean |