blob: 2724a1810ed5ea50736ed9daa94f767b9a588e03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
SUBDIRS := announce downloads docs faq events cp-tools
ifndef WMK
export WMK=wmk
endif
ifndef WML
export WML=wml
endif
WML_SRC = $(wildcard *.wml)
WML_OBJS = $(patsubst %.wml,%.html,$(WML_SRC))
all : $(WML_OBJS) subdirs
%.texinfo :
cp ../$(notdir $(@)) docs
# home and news html includes newsitems.txt so we list that here explicitly
home.html: home.wml include/macros.wml include/layout.wml newsitems.txt
$(WML) -o $@ $<
news.html: news.wml include/macros.wml include/layout.wml newsitems.txt
$(WML) -o $@ $<
%.html: %.wml include/macros.wml include/layout.wml
$(WML) -o $@ $<
.PHONY : clean
clean :
$(foreach dir, $(SUBDIRS), sh -c "cd $(dir) && $(MAKE) clean";)
-rm -f *.html
.PHONY : subdirs
subdirs :
$(foreach dir, $(SUBDIRS), sh -c "cd $(dir) && $(MAKE)";)
.PHONY : publish
publish :
@sh -c "if [ "$(CLASSPATH_WEBROOT)x" = x ]; then echo 'You must set CLASSPATH_WEBROOT in your environment first'; exit 1; fi"
@sh -c "if [ ! -d $(CLASSPATH_WEBROOT) ]; then echo 'You must set CLASSPATH_WEBROOT in your environment first'; exit 1; fi"
$(foreach dir, $(SUBDIRS), \
sh -c "mkdir -p $(CLASSPATH_WEBROOT)/$(dir);\
cd $(dir) && $(MAKE) publish";)
-cp -f *.html $(CLASSPATH_WEBROOT)
-cp -f *.css $(CLASSPATH_WEBROOT)
# -cp -f *.jpg $(CLASSPATH_WEBROOT)
|