Added oldenburger.linuxtage.de as one of our servers
[infodrom.org/luonnotar.infodrom.org] / src / Makefile
1 WML_FILES = $(wildcard *.wml)
2 FILES = $(WML_FILES:%.wml=%.html)
3 SFILES = $(WML_FILES:%.wml=%.shtml)
4 PFILES = $(WML_FILES:%.wml=%.php3)
5
6 DIRS = $(shell find . -maxdepth 1 -type d -not -name . -not -name CVS)
7
8 ROOT_PREFIX = $(shell perl -MCwd -e '$$_ = cwd;s/^.*src\/?//;@f=split /\//;$$n=$$\#f+1;print "../"x $$n;' )
9
10 IFLAGS = -I. -I$(ROOT_PREFIX)../Styles
11
12 .SUFFIXES: .wml .html
13
14 .wml.html:
15         /usr/bin/wml -n $(IFLAGS) $*.wml| sed 's:"\([a-zA-Z0-9_\.-]*\.\)\?imgdot-1x1-transp\(-ffffff\)\?\.gif":"$(ROOT_PREFIX)gifs/imgdot-1x1-transp.gif":' > $*.html
16         $(ROOT_PREFIX)../bin/fixsuffix $*.html
17
18 all: $(FILES)
19         test -z "$(DIRS)" || for d in "" $(DIRS); do if [ -n "$$d" ]; then (cp Makefile $$d && make -C $$d all); fi; done
20
21 dir: $(FILES)
22
23 clean:
24         -rm -f $(FILES) $(SFILES) $(PFILES) .depend *.imgdot-1x1-transp.gif imgdot-1x1-transp.gif imgdot-1x1-transp-ffffff.gif
25         -rm -f *~
26         test -z "$(DIRS)" || for d in "" $(DIRS); do if [ -n "$$d" ]; then (cp Makefile $$d && make -C $$d clean); fi; done
27         test -z "$(ROOT_PREFIX)" || rm -f Makefile
28
29 install:
30         make -C $(ROOT_PREFIX).. install
31
32 test:
33         make -C $(ROOT_PREFIX).. test
34
35 depend .depend:
36         $(ROOT_PREFIX)../bin/wmldepend.sh $(IFLAGS) $(WML_FILES) > .depend
37
38 rdepend:
39         make depend
40         test -z "$(DIRS)" || for d in "" $(DIRS); do if [ -n "$$d" ]; then (cp Makefile $$d && make -C $$d rdepend); fi; done
41
42 include .depend