summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 636e3464fae02a556f66928ba4744eb89837fa08 (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
APP_NAME=skins-jqmobile
PACKAGE=acf-$(APP_NAME)
VERSION=0.0.1

WWW_DIST=\
	images/* \
	jqmobile.css \
	jqmobile.js \
	template-html.lsp \
	template-welcome-read-html.lsp \
	themes/jqmobile-skin.min.css \
	themes/jquery.mobile.icons.min.css \
	themes/images/ajax-loader.gif \
	themes/images/icons-png/* \

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/jqmobile

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