The Perl version is *a lot* faster than the shell version, so we'll
[infodrom.org/www.infodrom.org] / Makefile
index e4b0568..3050cd6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -10,31 +10,36 @@ TEST = $(HOME)/luonnotar_html/new/infodrom
 endif
 endif
 
-FILES = --exclude "CVS/" --exclude "*imgdot-1x1-transp.gif" --include "*/"
-FILES+= --include "*.html" --include "*.shtml" --include "*.php3"
+FILES = --exclude "CVS/" --exclude "*imgdot-1x1-transp-ffffff.gif" --exclude "*imgdot-1x1-transp.gif"
+ifeq ($(hostname),luonnotar)
+FILES+= --exclude Mail-Archive/ --exclude Infodrom/mailstats/
+endif
+FILES+= --include "*/"
+FILES+= --include "*.html" --include "*.shtml" --include "*.php3" --include "*.txt"  --include "*.ps"
 FILES+= --include "*.png" --include "*.gif" --include "*.jpg"
+FILES+= --include "Debian/support/debian.de/channel.xml"
 FILES+= --exclude "*"
 
 build:
        make -C src all
 
 test:
-       test -d $(TEST) || mkdir $(TEST)
+       test -d $(TEST) || mkdir -p $(TEST)
        rsync -lptr $(FILES) src/ $(TEST)/
 #      cd src && for f in *.html; do cp $$f $(TEST)/$$f; done
 
 fix:
-#       for f in src/index.*.php3; do \
-#         sed '1,/width="40"/ s/width="40"/width="250"/' < $$f > tmp; \
-#         mv -f tmp $$f; \
-#         sed '1,/width="40"/ s/width="40"/width="400"/' < $$f > tmp; \
-#         mv -f tmp $$f; \
-#       done
 
 install: fix
-       test -d $(DEST) || mkdir $(DEST)
+       test -d $(DEST) || mkdir -p $(DEST)
        rsync -lptr $(FILES) src/ $(DEST)/
+       rsync src/Mail-Archive/index.php3 /var/www/www.infodrom.org/Mail-Archive/index.php3
+       rsync src/Infodrom/mailstats/index.php3 /var/www/www.infodrom.org/Infodrom/mailstats/index.php3
+
 #      cd src && for f in *.html; do cp $$f $(DEST)/$$f; done
+ifeq ($(hostname),finlandia)
+       -cp src/imgdot-1x1-transp-ffffff.gif $(DEST)/gifs/imgdot-1x1-transp.gif
+endif
 
 clean:
        -rm -f `find -name '*~'` `find -name '.?*.swp'`