blob: d52c50a4fc92f922d322bffc1f9f1bcf4f118eec (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
include ../config.mk
APP_DIST= \
acf-util/acf-util.roles \
acf-util/logon-controller.lua \
acf-util/logon-model.lua \
acf-util/roles-controller.lua \
acf-util/roles-getpermslist-html.lsp \
acf-util/roles-model.lua \
acf-util/roles-read-html.lsp \
acf-util/roles-viewroleperms-html.lsp \
acf-util/roles-viewroles-html.lsp \
acf-util/roles-viewuserroles-html.lsp \
acf-util/roles.menu \
acf-util/password-controller.lua \
acf-util/password-html.lsp \
acf-util/password-model.lua \
acf-util/password-status-html.lsp \
acf-util/password.menu \
acf-util/skins-controller.lua \
acf-util/skins-model.lua \
acf-util/skins-read-html.lsp \
acf-util/skins.menu \
acf-util/welcome-controller.lua\
acf-util/welcome-html.lsp\
acf_www-controller.lua\
acf_cli-controller.lua\
menuhints.menu\
template-ajax.lsp\
template-html.lsp\
template-stream.lsp\
dispatcherror-html.lsp\
exception-html.lsp\
status-html.lsp\
startstop-html.lsp\
filedetails-html.lsp\
expert-html.lsp\
debug-html.lsp\
form-html.lsp\
EXTRA_DIST=README Makefile
DISTFILES=$(APP_DIST) $(EXTRA_DIST)
install_dir=$(DESTDIR)/$(appdir)
phony+=all
all:
phony+=clean
clean:
phony+=distdir
distdir: $(DISTFILES)
mkdir -p "$(DISTDIR)/app"
for i in $(DISTFILES); do\
dest=`dirname "$(DISTDIR)/app/$$i"`;\
mkdir -p "$$dest";\
cp "$$i" "$$dest";\
done
phony+=install
install:
mkdir -p $(install_dir)
for i in $(APP_DIST); do\
dest=`dirname "$(install_dir)/$$i"`;\
mkdir -p "$$dest";\
cp "$$i" "$$dest";\
done
.PHONY: $(phony)
|