summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 3c627d7b49dabe510c8d35499f4b7f495df33e4c (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
APP_NAME=alpine-baselayout
PACKAGE=acf-$(APP_NAME)
VERSION=2.0_alpha2

APP_DIST=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.menu			\
	logfiles-model.lua		\
	logfiles-read-html.lsp		\
	logfiles-delete-html.lsp	\
	logfiles-view-html.lsp		\
	logfiles-download-html.lsp	\
	syslog.menu			\
	syslog-controller.lua		\
	syslog-model.lua		\
	syslog-basic-html.lsp		\
	password.menu			\
	password-controller.lua		\
	password-model.lua		\
	password-read-html.lsp		\
	template-logfiles-download-html.lsp

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