71b10c6f18bd36bed65f57721329e039e3b187e9
[infodrom.org/www.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\.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 && cd $$d && make all); fi; done
20
21 clean:
22         rm -f $(FILES) $(SFILES) $(PFILES) .depend *.imgdot-1x1-transp.gif
23         test -z "$(DIRS)" || for d in "" $(DIRS); do if [ -n "$$d" ]; then (cp Makefile $$d && cd $$d && make clean); fi; done
24         test -z "$(ROOT_PREFIX)" || rm -f Makefile
25
26 depend .depend:
27         $(ROOT_PREFIX)../bin/wmldepend.sh $(IFLAGS) $(WML_FILES) > .depend
28
29 include .depend