summaryrefslogtreecommitdiffstats
path: root/www/Makefile
blob: e208bdfdddfe9c860ddbadd6a8a4ba0f8c7f821e (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
47
48
49
50
include ../config.mk

WWW_DIST=cgi-bin/acf\
	cgi-bin/mvc.lua\
	static/alpine.gif\
	static/alpine.png\
	static/arctic-back.png\
	static/arctic-upleft.png\
	static/greypx.gif\
	static/selected.gif\
	static/submenu.css\
	static/unselected.gif\
	static/webconf-purple.css\
	static/webconf.css\
	index.html\
	sample.html

EXTRA_DIST=Makefile
DISTFILES=$(WWW_DIST) $(EXTRA_DIST)

install_dir=$(DESTDIR)/$(wwwdir)
dist_dir=$(DISTDIR)/$(notdir $(PWD))

phony+=all
all:

phony+=clean
clean:

phony+=distdir
distdir: $(DISTFILES)
	mkdir -p "$(dist_dir)"
	for i in $(DISTFILES); do\
		dest=`dirname "$(dist_dir)/$$i"`;\
		mkdir -p "$$dest";\
		cp "$$i" "$$dest";\
	done

phony+=install
install:
	mkdir -p $(install_dir)
	for i in $(WWW_DIST); do\
		dest=`dirname "$(install_dir)/$$i"`;\
		mkdir -p "$$dest";\
		cp "$$i" "$$dest";\
	done
	chmod +x $(install_dir)/cgi-bin/acf


.PHONY: $(phony)