1 |
TARGS = about.htm browse.htm documentation.htm install.htm tutorials.htm search.htm |
2 |
|
3 |
HEADERS = bits/header.html bits/topbar.html |
4 |
FOOTERS = bits/footer.html |
5 |
COMMONFILES = $(HEADERS) $(FOOTERS) |
6 |
|
7 |
all: $(TARGS) |
8 |
|
9 |
about.htm: bits/about_side.htm $(COMMONFILES) |
10 |
cat $(HEADERS) $< $(FOOTERS) > $@ |
11 |
browse.htm: bits/browse_side.htm $(COMMONFILES) |
12 |
cat $(HEADERS) $< $(FOOTERS) > $@ |
13 |
documentation.htm: bits/documentation_side.htm $(COMMONFILES) |
14 |
cat $(HEADERS) $< $(FOOTERS) > $@ |
15 |
install.htm: bits/install_side.htm $(COMMONFILES) |
16 |
cat $(HEADERS) $< $(FOOTERS) > $@ |
17 |
tutorials.htm: bits/tutorials_side.htm $(COMMONFILES) |
18 |
cat $(HEADERS) $< $(FOOTERS) > $@ |
19 |
search.htm: bits/search_side.htm $(COMMONFILES) |
20 |
cat $(HEADERS) $< $(FOOTERS) > $@ |
21 |
|
22 |
clean: |
23 |
rm -f $(TARGS) |