summaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: 435d59c599b8f908a4cc179e83ac9598d5e8629d (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
include build/config.mk

MODULES = applications/* libs/* modules/* themes/* i18n/* contrib/luaposix
LUA_TARGET = source

OS:=$(shell uname)
export OS

.PHONY: all build gccbuild luabuild clean host gcchost luahost hostcopy hostclean

all: build

build: luabuild gccbuild

gccbuild:
	for i in $(MODULES); do make -C$$i compile; done	

luabuild:
	for i in $(MODULES); do make -C$$i lua$(LUA_TARGET); done

clean:
	for i in $(MODULES); do make -C$$i clean; done


host: build hostcopy

gcchost: gccbuild hostcopy

luahost: luabuild hostcopy

hostcopy: 
	mkdir -p host
	for i in $(MODULES); do cp -a $$i/dist/* host/ -R 2>/dev/null || true; done
	rm -f host/luci
	ln -s .$(LUCI_INSTALLDIR) host/luci

run: host
	libs/sgi-webuci/host/buildconfig.sh `pwd`/host  > host/etc/boa/boa.conf
	./host/usr/bin/boa -c ./host/etc/boa -d

hostclean: clean
	rm -rf host