summaryrefslogtreecommitdiffstats
path: root/www/Makefile
blob: becae867157551fe6622e09a7487a9e5b25d5bb6 (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
51
52
53
include ../config.mk

WWW_DIST=cgi-bin/acf\
	static/header_body.jpg\
	static/alpine_logo.png\
	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/static.css\
	simple/simple.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)