openrc/src/rc/Makefile

75 lines
2.5 KiB
Makefile
Raw Normal View History

2008-01-07 15:09:44 +05:30
PROG= rc
SRCS= checkpath.c fstabinfo.c mountinfo.c start-stop-daemon.c \
rc-applets.c rc-depend.c rc-logger.c \
rc-misc.c rc-plugin.c rc-service.c rc-status.c rc-update.c \
runscript.c rc.c swclock.c
2008-01-06 02:19:48 +05:30
2008-01-07 15:09:44 +05:30
CLEANFILES= version.h
2008-01-06 02:19:48 +05:30
BINDIR= ${PREFIX}/bin
SBINDIR= ${PREFIX}/sbin
LINKDIR= ${LIBEXECDIR}
2008-01-06 02:19:48 +05:30
2008-01-07 15:09:44 +05:30
BINLINKS= rc-status
SBINLINKS= rc-service rc-update runscript start-stop-daemon
2008-01-06 02:19:48 +05:30
RC_BINLINKS= einfon einfo ewarnn ewarn eerrorn eerror ebegin eend ewend \
eindent eoutdent esyslog eval_ecolors ewaitfile \
2008-01-07 15:09:44 +05:30
veinfo vewarn vebegin veend vewend veindent veoutdent \
service_starting service_started \
service_stopping service_stopped \
service_inactive service_wasinactive \
service_hotplugged service_started_daemon service_crashed \
2008-01-07 15:09:44 +05:30
checkpath fstabinfo mountinfo rc-depend \
service_get_value service_set_value get_options save_options \
shell_var is_newer_than is_older_than
2008-01-06 02:19:48 +05:30
RC_SBINLINKS= mark_service_starting mark_service_started \
2008-01-07 15:09:44 +05:30
mark_service_stopping mark_service_stopped \
mark_service_inactive mark_service_wasinactive \
mark_service_hotplugged mark_service_failed \
rc-abort swclock
2008-03-03 18:34:08 +05:30
ALL_LINKS= ${BINLINKS} ${SBINLINKS} ${RC_BINLINKS} ${RC_SBINLINKS}
CLEANFILES+= ${ALL_LINKS}
2008-01-06 02:19:48 +05:30
CPPFLAGS+= -I../includes -I../librc -I../libeinfo
2008-02-02 18:30:01 +05:30
LDFLAGS+= -L../librc -L../libeinfo
LDADD+= -lutil -lrc -leinfo
2009-10-08 04:49:18 +05:30
include ../../Makefile.inc
MK= ../../mk
include ${MK}/debug.mk
include ${MK}/prog.mk
include ${MK}/git.mk
include ${MK}/cc.mk
include ${MK}/${MKTERMCAP}.mk
2008-01-07 15:09:44 +05:30
LDADD+= ${LIBDL} ${LIBKVM}
include ${MK}/${MKPAM}.mk
2008-01-06 02:19:48 +05:30
2008-01-09 17:14:43 +05:30
${SRCS}: version.h
2008-01-06 02:19:48 +05:30
version.h:
2009-10-08 04:49:18 +05:30
echo "#define VERSION \"${VERSION}${GITVER}\"" >version.h
2008-01-06 02:19:48 +05:30
if test -n "${BRANDING}"; then \
echo "#define BRANDING \"${BRANDING}\"" >> version.h; \
fi
install: all
${INSTALL} -d ${DESTDIR}${SBINDIR}
${INSTALL} -m ${BINMODE} ${PROG} ${DESTDIR}${SBINDIR}
2008-01-06 02:19:48 +05:30
${INSTALL} -d ${DESTDIR}${BINDIR}
for x in ${BINLINKS}; do ln -fs ${SBINDIR}/${PROG} ${DESTDIR}${BINDIR}/$$x; done
${INSTALL} -d ${DESTDIR}${SBINDIR}
for x in ${SBINLINKS}; do ln -fs ${PROG} ${DESTDIR}${SBINDIR}/$$x; done
${INSTALL} -d ${DESTDIR}${LINKDIR}/bin
for x in $(RC_BINLINKS); do ln -fs ${SBINDIR}/${PROG} ${DESTDIR}${LINKDIR}/bin/$$x; done
${INSTALL} -d ${DESTDIR}${LINKDIR}/sbin
for x in ${RC_SBINLINKS}; do ln -fs ${SBINDIR}/${PROG} ${DESTDIR}${LINKDIR}/sbin/$$x; done
2008-01-13 15:51:22 +05:30
if test "${MKPAM}" = pam; then \
2008-01-06 02:24:34 +05:30
${INSTALL} -d ${DESTDIR}${PAMDIR}; \
2008-01-09 17:14:43 +05:30
${INSTALL} -m ${PAMMODE} start-stop-daemon.pam ${DESTDIR}${PAMDIR}/start-stop-daemon; \
2008-01-06 02:19:48 +05:30
fi
2008-01-14 11:02:39 +05:30
2008-03-24 11:40:40 +05:30
check test::
2008-01-14 11:02:39 +05:30
links: rc
2008-03-03 18:34:08 +05:30
for l in ${ALL_LINKS}; do ln -sf rc $$l || exit $$? ; done