mirror of
https://github.com/pygos/init.git
synced 2024-11-05 12:17:10 +01:00
14 lines
383 B
Text
14 lines
383 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
|
||
|
|
||
|
sbin_PROGRAMS += reboot shutdown
|