Reorganizing frontend in source tree.
This commit is contained in:
parent
1807e40dd3
commit
86746ac72f
6
Makefile
6
Makefile
|
@ -4,7 +4,7 @@ SHELL := sh -e
|
||||||
|
|
||||||
LANGUAGES = $(shell cd manpages/po && ls)
|
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
|
all: build
|
||||||
|
|
||||||
|
@ -46,12 +46,12 @@ build:
|
||||||
install:
|
install:
|
||||||
# Installing shared data
|
# Installing shared data
|
||||||
mkdir -p $(DESTDIR)/usr/share/live/build
|
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
|
cp -r share/* $(DESTDIR)/usr/share/live/build
|
||||||
|
|
||||||
# Installing executables
|
# Installing executables
|
||||||
mkdir -p $(DESTDIR)/usr/bin
|
mkdir -p $(DESTDIR)/usr/bin
|
||||||
cp -a bin/* $(DESTDIR)/usr/bin
|
cp -a frontend/cli/* $(DESTDIR)/usr/bin
|
||||||
|
|
||||||
mkdir -p $(DESTDIR)/usr/lib/live
|
mkdir -p $(DESTDIR)/usr/lib/live
|
||||||
cp -a scripts/* $(DESTDIR)/usr/lib/live
|
cp -a scripts/* $(DESTDIR)/usr/lib/live
|
||||||
|
|
Loading…
Reference in New Issue