mirror of
https://github.com/pygos/init.git
synced 2024-11-22 03:09:46 +01:00
Build system and directory structure cleanup
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
parent
e148e873e0
commit
6cf0a254cd
11 changed files with 17 additions and 18 deletions
|
@ -9,13 +9,13 @@ EXTRA_DIST = README LICENSE
|
||||||
|
|
||||||
helperdir = @SCRIPTDIR@
|
helperdir = @SCRIPTDIR@
|
||||||
helper_PROGRAMS =
|
helper_PROGRAMS =
|
||||||
|
helper_SCRIPTS =
|
||||||
|
|
||||||
include lib/Makemodule.am
|
include lib/Makemodule.am
|
||||||
include cmd/Makemodule.am
|
include cmd/Makemodule.am
|
||||||
include initd/Makemodule.am
|
include initd/Makemodule.am
|
||||||
include scripts/Makemodule.am
|
include scripts/Makemodule.am
|
||||||
include services/Makemodule.am
|
include services/Makemodule.am
|
||||||
include servicecmd/Makemodule.am
|
|
||||||
|
|
||||||
install-data-local:
|
install-data-local:
|
||||||
$(MKDIR_P) $(DESTDIR)$(SVCDIR)
|
$(MKDIR_P) $(DESTDIR)$(SVCDIR)
|
||||||
|
|
|
@ -15,5 +15,18 @@ killall5_CPPFLAGS = $(AM_CPPFLAGS)
|
||||||
killall5_CFLAGS = $(AM_CFLAGS)
|
killall5_CFLAGS = $(AM_CFLAGS)
|
||||||
killall5_LDFLAGS = $(AM_LDFLAGS)
|
killall5_LDFLAGS = $(AM_LDFLAGS)
|
||||||
|
|
||||||
sbin_PROGRAMS += reboot shutdown
|
SRVHEADERS = cmd/service/servicecmd.h
|
||||||
|
|
||||||
|
service_SOURCES = cmd/service/servicecmd.c cmd/service/help.c
|
||||||
|
service_SOURCES += cmd/service/enable.c cmd/service/disable.c
|
||||||
|
service_SOURCES += cmd/service/dumpscript.c cmd/service/list.c
|
||||||
|
service_SOURCES += $(SRVHEADERS)
|
||||||
|
service_CPPFLAGS = $(AM_CPPFLAGS)
|
||||||
|
service_CFLAGS = $(AM_CFLAGS)
|
||||||
|
service_LDFLAGS = $(AM_LDFLAGS)
|
||||||
|
service_LDADD = libinit.a
|
||||||
|
|
||||||
|
EXTRA_DIST += $(SRVHEADERS)
|
||||||
|
|
||||||
|
sbin_PROGRAMS += service reboot shutdown
|
||||||
helper_PROGRAMS += killall5
|
helper_PROGRAMS += killall5
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
scriptdir = @SCRIPTDIR@
|
helper_SCRIPTS += scripts/devfs.sh scripts/trymount.sh
|
||||||
script_SCRIPTS = scripts/devfs.sh scripts/trymount.sh
|
|
||||||
|
|
||||||
if PYGOSCFG
|
if PYGOSCFG
|
||||||
script_SCRIPTS += scripts/overlay.sh
|
helper_SCRIPTS += scripts/overlay.sh
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
SRVHEADERS = servicecmd/servicecmd.h
|
|
||||||
|
|
||||||
service_SOURCES = servicecmd/servicecmd.c servicecmd/help.c servicecmd/list.c
|
|
||||||
service_SOURCES += servicecmd/enable.c servicecmd/disable.c
|
|
||||||
service_SOURCES += servicecmd/dumpscript.c $(SRVHEADERS)
|
|
||||||
service_CPPFLAGS = $(AM_CPPFLAGS)
|
|
||||||
service_CFLAGS = $(AM_CFLAGS)
|
|
||||||
service_LDFLAGS = $(AM_LDFLAGS)
|
|
||||||
service_LDADD = libinit.a
|
|
||||||
|
|
||||||
EXTRA_DIST += $(SRVHEADERS)
|
|
||||||
|
|
||||||
sbin_PROGRAMS += service
|
|
Loading…
Reference in a new issue