summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 54420aa7c586777ef5263e481a28808d51e87fa0 (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
APP_NAME=skins
PACKAGE=acf-$(APP_NAME)
VERSION=0.2.0

WWW_DIST=\
	static/alpine.jpg\
	static/alpine_inv.jpg\
	static/reset.css\
	static/watermark.jpg\
	static/prototype.js\
	static/tango/16x16/categories/applications-internet.png \
	static/tango/16x16/categories/applications-system.png \
	static/tango/16x16/places/start-here.png \
	static/tango/16x16/places/network-server.png \
	static/tango/16x16/status/network*.png \
	static/tango/16x16/devices/computer.png \
	static/tango/16x16/devices/network*.png \
	static/tango/16x16/apps/system-users.png \
	static/tango/16x16/apps/utilities*.png \
	static/tango/16x16/emblems/emblem-unreadable.png \
	static/tango/16x16/actions/list*.png \
	static/tango/16x16/actions/go*.png \
	static/tango/16x16/actions/document-properties.png \
	alps/* \
	ice/* \
	snow/* \
	clouds/*


EXTRA_DIST=README Makefile config.mk

DISTFILES=$(WWW_DIST) $(EXTRA_DIST) 

TAR=tar

P=$(PACKAGE)-$(VERSION)
tarball=$(P).tar.bz2
install_dir=$(DESTDIR)/$(wwwdir)/skins/

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

dist: $(tarball)

install:
	mkdir -p $(install_dir)
	for i in $(WWW_DIST); do\
		dest=`dirname "$(install_dir)/$$i"`;\
		mkdir -p "$$dest";\
		cp "$$i" "$$dest";\
	done

$(tarball):	$(DISTFILES)
	rm -rf $(P)
	mkdir -p $(P)
	for i in $(DISTFILES); do\
		dest=`dirname "$(P)/$$i"`;\
		mkdir -p "$$dest";\
		cp "$$i" "$$dest";\
	done
	$(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