mirror of
https://github.com/pygos/init.git
synced 2024-11-05 04:07:10 +01:00
0a28074071
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
19 lines
545 B
Text
19 lines
545 B
Text
shutdown_SOURCES = cmd/shutdown.c
|
|
shutdown_CPPFLAGS = $(AM_CPPFLAGS) -DPROGNAME=shutdown
|
|
shutdown_CFLAGS = $(AM_CFLAGS)
|
|
shutdown_LDFLAGS = $(AM_LDFLAGS)
|
|
shutdown_LDADD = libinit.a
|
|
|
|
reboot_SOURCES = cmd/shutdown.c
|
|
reboot_CPPFLAGS = $(AM_CPPFLAGS) -DPROGNAME=reboot
|
|
reboot_CFLAGS = $(AM_CFLAGS)
|
|
reboot_LDFLAGS = $(AM_LDFLAGS)
|
|
reboot_LDADD = libinit.a
|
|
|
|
killall5_SOURCES = cmd/killall5.c
|
|
killall5_CPPFLAGS = $(AM_CPPFLAGS)
|
|
killall5_CFLAGS = $(AM_CFLAGS)
|
|
killall5_LDFLAGS = $(AM_LDFLAGS)
|
|
|
|
sbin_PROGRAMS += reboot shutdown
|
|
helper_PROGRAMS += killall5
|