diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2013-06-25 09:04:42 +0200 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-06-25 09:04:42 +0200 |
commit | 86746ac72fb9dc558e40914de9aea26ad58d19b1 (patch) | |
tree | c8b99efde0ed4d6e77351eb9cc189d635162e188 /Makefile | |
parent | 1807e40dd3666564851b2b0d855513bd004a927d (diff) | |
download | vyos-live-build-86746ac72fb9dc558e40914de9aea26ad58d19b1.tar.gz vyos-live-build-86746ac72fb9dc558e40914de9aea26ad58d19b1.zip |
Reorganizing frontend in source tree.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ SHELL := sh -e LANGUAGES = $(shell cd manpages/po && ls) -SCRIPTS = bin/* frontends/cgi/live-build-cgi frontends/cgi/live-build-cgi.cron functions/* examples/auto/* examples/hooks/* scripts/*.sh scripts/*/* share/bin/* share/hooks/* +SCRIPTS = frontend/cli/* frontend/cgi/live-build-cgi frontend/cgi/live-build-cgi.cron functions/* examples/auto/* examples/hooks/* scripts/*.sh scripts/*/* share/bin/* share/hooks/* all: build @@ -46,12 +46,12 @@ build: install: # Installing shared data mkdir -p $(DESTDIR)/usr/share/live/build - cp -r frontends/cgi data functions templates VERSION $(DESTDIR)/usr/share/live/build + cp -r frontend/cgi data functions templates VERSION $(DESTDIR)/usr/share/live/build cp -r share/* $(DESTDIR)/usr/share/live/build # Installing executables mkdir -p $(DESTDIR)/usr/bin - cp -a bin/* $(DESTDIR)/usr/bin + cp -a frontend/cli/* $(DESTDIR)/usr/bin mkdir -p $(DESTDIR)/usr/lib/live cp -a scripts/* $(DESTDIR)/usr/lib/live |