summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: bd6f43d3fc9438b00c08601e38b197cffa85d5fe (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
72
73
74
75
APP_NAME=alpine-baselayout
PACKAGE=acf-$(APP_NAME)
VERSION=2.0_alpha3

APP_DIST=\
	alpineversion-controller.lua	\
	alpineversion-model.lua		\
	health-controller.lua		\
	health-model.lua		\
	health-modules-html.lsp		\
	health-network-html.lsp		\
	health-proc-html.lsp		\
	health-storage-html.lsp		\
	health-system-html.lsp		\
	health.menu			\
	hostname-controller.lua		\
	hostname-html.lsp		\
	hostname-model.lua		\
	hostname.menu			\
	interfaces-controller.lua	\
	interfaces-create-html.lsp	\
	interfaces-delete-html.lsp	\
	interfaces-model.lua		\
	interfaces-read-html.lsp	\
	interfaces-update-html.lsp	\
	interfaces.menu			\
	logfiles-controller.lua		\
	logfiles-model.lua		\
	logfiles-read-html.lsp		\
	logfiles-view-html.lsp		\
	logfiles.menu			\
	syslog*	\
	template-logfiles-download-html.lsp	\
	skins-controller.lua		\
	skins-model.lua			\
	skins-read-html.lsp		\
	skins.menu			\


EXTRA_DIST=README Makefile config.mk

DISTFILES=$(APP_DIST) $(EXTRA_DIST) 

TAR=tar

P=$(PACKAGE)-$(VERSION)
tarball=$(P).tar.bz2
install_dir=$(DESTDIR)/$(appdir)/$(APP_NAME)

all:
clean:
	rm -rf $(tarball) $(P)

dist: $(tarball)

install:
	mkdir -p "$(install_dir)"
	cp -a $(APP_DIST) "$(install_dir)"

$(tarball):	$(DISTFILES)
	rm -rf $(P)
	mkdir -p $(P)
	cp $(DISTFILES) $(P)
	$(TAR) -jcf $@ $(P)
	rm -rf $(P)

# target that creates a tar package, unpacks is and install from package
dist-install: $(tarball)
	$(TAR) -jxf $(tarball)
	$(MAKE) -C $(P) install DESTDIR=$(DESTDIR)
	rm -rf $(P)

include config.mk

.PHONY: all clean dist install dist-install