Changes required to make the pages work on luonnotar
[infodrom.org/infocon.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 && 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 depend .depend:
30         $(ROOT_PREFIX)../bin/wmldepend.sh $(IFLAGS) $(WML_FILES) > .depend
31
32 rdepend:
33         make depend
34         test -z "$(DIRS)" || for d in "" $(DIRS); do if [ -n "$$d" ]; then (cp Makefile $$d && make -C $$d rdepend); fi; done
35
36 include .depend