summaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: 5dd89c0bbf7c6ad3accdf93e4954666ca53122fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
include build/config.mk

MODULES = applications/* core modules/* themes/*
LUA_TARGET = source


.PHONY: all build clean host hostclean

all: build

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

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

host: build
	mkdir -p host
	for i in $(MODULES); do cp $$i/dist/* host/ -R 2>/dev/null || true; done
	ln -sf .$(LUCI_INSTALLDIR) host/luci
	
hostclean: clean
	rm host -rf