Mercurial > mxd2map
annotate website/buildhtml.mk @ 223:e412fad185ad
Merged with upstream
author | Stephan Holl <stephan.holl@intevation.de> |
---|---|
date | Wed, 27 Jul 2011 09:23:46 +0200 |
parents | f13f51627f07 |
children | ec9d63ce691d |
rev | line source |
---|---|
155 | 1 # Build html from m4 macrofiles |
2 # $Id$ | |
3 # | |
4 # (c)2005,2006 by Intevation GmbH | |
5 # Author(s): Sascha Wilde | |
6 # | |
7 # This is Free Software licensed under the GPL | |
8 | |
9 # Preprocessor configuration | |
10 PP = m4 | |
11 PPFLAGS = --prefix-builtins | |
12 | |
13 # Build configuration | |
156
67d395ac5509
updated buildhtml to hg.
Emanuel Schuetze <emanuel@intevation.de>
parents:
155
diff
changeset
|
14 TARGETS = $(patsubst %.htm4,%.html,$(wildcard *.htm4)) |
155 | 15 SUBDIRS = |
16 | |
17 # Installation configuration | |
162
dd4bb5869f86
replaced mapWOC with MXD2map
Stephan Holl <stephan.holl@intevation.de>
parents:
159
diff
changeset
|
18 INSTALL_DIR = ./mxd2map-www |
195
123ebb293f3a
* website/.htaccess,
Stephan Holl <stephan.holl@intevation.de>
parents:
162
diff
changeset
|
19 ADD_INST_TYPES = *.css *.php *.png .htaccess |
219
f13f51627f07
Adopted Makefiles to build documentation as well
Stephan Holl <stephan.holl@intevation.de>
parents:
212
diff
changeset
|
20 ADD_INST_DIRS = img documentation |
155 | 21 |
22 CURDIR=$(shell pwd) | |
23 | |
24 .SUFFIXES: .html .htm4 | |
25 | |
26 .htm4.html: | |
27 $(PP) -DNO_LINK_FOR=$@ $(PPFLAGS) $< > $@ | |
28 | |
211
bdf58d5b7d92
Added an english translation of the website.
Stephan Holl <stephan.holl@intevation.de>
parents:
195
diff
changeset
|
29 all: $(TARGETS) images subdirs |
155 | 30 |
31 $(TARGETS): template.m4 template_header.m4 \ | |
32 header.m4 style.css | |
33 | |
219
f13f51627f07
Adopted Makefiles to build documentation as well
Stephan Holl <stephan.holl@intevation.de>
parents:
212
diff
changeset
|
34 documentation: |
f13f51627f07
Adopted Makefiles to build documentation as well
Stephan Holl <stephan.holl@intevation.de>
parents:
212
diff
changeset
|
35 $(MAKE) -C ../doku online |
f13f51627f07
Adopted Makefiles to build documentation as well
Stephan Holl <stephan.holl@intevation.de>
parents:
212
diff
changeset
|
36 |
211
bdf58d5b7d92
Added an english translation of the website.
Stephan Holl <stephan.holl@intevation.de>
parents:
195
diff
changeset
|
37 images: |
bdf58d5b7d92
Added an english translation of the website.
Stephan Holl <stephan.holl@intevation.de>
parents:
195
diff
changeset
|
38 $(MAKE) -C ../doku/funktionsweise/ all |
bdf58d5b7d92
Added an english translation of the website.
Stephan Holl <stephan.holl@intevation.de>
parents:
195
diff
changeset
|
39 |
155 | 40 subdirs: $(SUBDIRS) |
41 @for dir in $^ ; do \ | |
42 $(MAKE) -C $$dir SUBDIRS="" ; \ | |
43 done | |
44 | |
219
f13f51627f07
Adopted Makefiles to build documentation as well
Stephan Holl <stephan.holl@intevation.de>
parents:
212
diff
changeset
|
45 online: all documentation |
162
dd4bb5869f86
replaced mapWOC with MXD2map
Stephan Holl <stephan.holl@intevation.de>
parents:
159
diff
changeset
|
46 echo "Going to put current contents online for www.mxd2mapp.org ..." |
212
011ec33e84b4
* website/.htaccess, website/buildhtml.mk, website/switch.php:
Stephan Holl <stephan.holl@intevation.de>
parents:
211
diff
changeset
|
47 rsync -urvPL --exclude='.hg' $(ADD_INST_TYPES) $(TARGETS) $(ADD_INST_DIRS) \ |
195
123ebb293f3a
* website/.htaccess,
Stephan Holl <stephan.holl@intevation.de>
parents:
162
diff
changeset
|
48 sholl@wald.intevation.org:/mxd2map/htdocs/ |
155 | 49 |
50 install: all | |
51 mkdir -p $(INSTALL_DIR) ;\ | |
52 cp -uf $(TARGETS) $(INSTALL_DIR) ;\ | |
53 cp -uf $(ADD_INST_TYPES) $(INSTALL_DIR) | |
54 cp -urf *$(ADD_INST_DIRS) $(INSTALL_DIR) | |
156
67d395ac5509
updated buildhtml to hg.
Emanuel Schuetze <emanuel@intevation.de>
parents:
155
diff
changeset
|
55 find $(INSTALL_DIR) -name ".hg" | xargs rm -rf |
155 | 56 |
57 tar: install | |
58 echo $(CURDIR) | |
162
dd4bb5869f86
replaced mapWOC with MXD2map
Stephan Holl <stephan.holl@intevation.de>
parents:
159
diff
changeset
|
59 ( cd $(INSTALL_DIR) ; tar -czv -f $(CURDIR)/www.mxd2map.org.tar.gz . ) |
195
123ebb293f3a
* website/.htaccess,
Stephan Holl <stephan.holl@intevation.de>
parents:
162
diff
changeset
|
60 |
123ebb293f3a
* website/.htaccess,
Stephan Holl <stephan.holl@intevation.de>
parents:
162
diff
changeset
|
61 clean: |
211
bdf58d5b7d92
Added an english translation of the website.
Stephan Holl <stephan.holl@intevation.de>
parents:
195
diff
changeset
|
62 $(MAKE) -C ../doku/funktionsweise/ clean |
195
123ebb293f3a
* website/.htaccess,
Stephan Holl <stephan.holl@intevation.de>
parents:
162
diff
changeset
|
63 rm -f *.html |
123ebb293f3a
* website/.htaccess,
Stephan Holl <stephan.holl@intevation.de>
parents:
162
diff
changeset
|
64 |
123ebb293f3a
* website/.htaccess,
Stephan Holl <stephan.holl@intevation.de>
parents:
162
diff
changeset
|
65 clean-en: |
123ebb293f3a
* website/.htaccess,
Stephan Holl <stephan.holl@intevation.de>
parents:
162
diff
changeset
|
66 rm -f 404.html about.html contact.html development.html donate.html download.html impressum.html index.html license.html |
123ebb293f3a
* website/.htaccess,
Stephan Holl <stephan.holl@intevation.de>
parents:
162
diff
changeset
|
67 |