summaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: e2a74c0889690047124aaf26f24a7c4c0436e869 (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
LUAC = luac
LUAC_OPTIONS = -s

FILES = ffluci/config.lua

CFILES = ffluci/util.lua ffluci/http.lua \
ffluci/fs.lua ffluci/i18n.lua ffluci/model/uci.lua \
ffluci/template.lua ffluci/cbi.lua ffluci/dispatcher.lua \
ffluci/menu.lua ffluci/init.lua ffluci/sys.lua 

DIRECTORIES = dist/ffluci/model dist/ffluci/controller dist/ffluci/i18n dist/ffluci/view

INFILES = $(CFILES:%=src/%)
OUTFILE = ffluci/init.lua

.PHONY: all dist-compile dist-source examples-compile examples-source dist examples compile source clean

all: compile

dist-compile: compile dist
dist-source: source dist

examples-compile: compile examples
examples-source: source examples


dist:
	cp src/ffluci/controller/* dist/ffluci/controller/ -R
	cp src/ffluci/i18n/* dist/ffluci/i18n/
	cp src/ffluci/view/* dist/ffluci/view/ -R
	
examples:
	cp examples/* dist/ -R

compile:
	mkdir -p $(DIRECTORIES)
	$(LUAC) $(LUAC_OPTIONS) -o dist/$(OUTFILE) $(INFILES)
	for i in $(CFILES); do [ -f dist/$$i ] || ln -s `dirname $$i | cut -s -d / -f 2- | sed -e 's/[^/]*\/*/..\//g'``basename $(OUTFILE)` dist/$$i; done
	for i in $(FILES); do cp src/$$i dist/$$i; done

source:
	mkdir -p $(DIRECTORIES)
	for i in $(CFILES); do cp src/$$i dist/$$i; done
	for i in $(FILES); do cp src/$$i dist/$$i; done
	
clean:
	rm dist -rf