Some design updates, should be more modern, I guess.
[infodrom.org/luonnotar.infodrom.org] / Makefile
index 60295cf..fd3019b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -13,12 +13,12 @@ TEST = $(HOME)/public_html/luonnotar
 #TEST = /var/lib/webspace/www.infodrom.ffis.de/new
 
 FILES = --exclude "CVS/" --exclude "*imgdot-1x1-transp-ffffff.gif" --exclude "*imgdot-1x1-transp.gif" --include "*/"
-FILES+= --include "*.jpg" --include "*.html" --include "*.shtml" --include "*.php3" --include "*.gif"
-FILES+= --include "*.png"
+FILES+= --include "*.html" --include "*.shtml" --include "*.php3"
+FILES+= --include "*.png" --include "*.gif" --include "*.jpg"
 FILES+= --exclude "*"
 
 build:
-       cd src && make all
+       make -C src all
 
 test:
        false
@@ -41,8 +41,8 @@ install: fix
 
 clean:
        -rm -f `find -name '*~'` `find -name '.?*.swp'`
-       -cd src && make clean
-       -cd Styles && make clean
+       -make -C src clean
+       -make -C Styles clean
 
 depend:
-       cd src && make rdepend
+       make -C src rdepend