diff options
author | Roy Marples <roy@marples.name> | 2008-01-10 16:35:59 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-10 16:35:59 +0000 |
commit | 43147845209873b0776bd75d363913fe25611f49 (patch) | |
tree | ab3295c30664476d8d05b0fe5fe9ace702ade5ea /src/rc | |
parent | 2643f2e605f102d2c2fa098d0cf5400d3795ed4a (diff) |
Allow for OS and SUBOS folders so we can introduce NetBSD scripts whilst keeping BSD for all BSD's.
Diffstat (limited to 'src/rc')
-rw-r--r-- | src/rc/Makefile | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/src/rc/Makefile b/src/rc/Makefile index b6ae45a2..e804ec98 100644 --- a/src/rc/Makefile +++ b/src/rc/Makefile @@ -5,11 +5,9 @@ SRCS= checkpath.c fstabinfo.c mountinfo.c rc.c rc-depend.c \ CLEANFILES= version.h -TOPDIR= .. - -LDFLAGS+= -L${TOPDIR}/librc -L${TOPDIR}/libeinfo +LDFLAGS+= -L../librc -L../libeinfo LDADD+= -lutil -lrc -leinfo -CFLAGS+= -I${TOPDIR} -I${TOPDIR}/librc -I${TOPDIR}/libeinfo +CFLAGS+= -I../includes -I../librc -I../libeinfo BINDIR?= /sbin @@ -32,18 +30,19 @@ RC_SBINLINKS= mark_service_starting mark_service_started \ mark_service_coldplugged mark_service_failed \ rc-abort -include ${TOPDIR}/os.mk +MK= ../../mk +include ${MK}/os.mk CFLAGS+= -DLIB=\"${LIBNAME}\" -include ${TOPDIR}/cc.mk -include ${TOPDIR}/prog.mk +include ${MK}/cc.mk +include ${MK}/prog.mk -include ${TOPDIR}/${TERMCAP}.mk +include ${MK}/${TERMCAP}.mk LDADD+= ${LIBDL} ${LIBKVM} -include ${TOPDIR}/${PAM}.mk +include ${MK}/${PAM}.mk ${SRCS}: version.h version.h: - sed -n -e 's/^VERSION =[[:space:]]*\([^[:space:]]*\).*/#define VERSION "\1\"/p' ../../Makefile > version.h + sed -n -e 's/^VERSION=[[:space:]]*\([^[:space:]]*\).*/#define VERSION "\1\"/p' ../../Makefile > version.h if test -n "${BRANDING}"; then \ echo "#define BRANDING \"${BRANDING}\"" >> version.h; \ fi @@ -54,7 +53,7 @@ install: all ${INSTALL} -d ${DESTDIR}/bin for x in ${BINLINKS}; do ln -fs ${BINDIR}/${PROG} ${DESTDIR}/bin/$$x; done ${INSTALL} -d ${DESTDIR}/bin - for x in ${SBINLINKS}; do ln -fs ${BINDIR}/${PROG} ${DESTDIR}${BINDIR}/$$x; done + for x in ${SBINLINKS}; do ln -fs ${PROG} ${DESTDIR}${BINDIR}/$$x; done ${INSTALL} -d ${DESTDIR}/${LIBNAME}/${PROG}/bin for x in $(RC_BINLINKS); do ln -fs ${BINDIR}/${PROG} $(DESTDIR)/${LIBNAME}/${PROG}/bin/$$x; done ${INSTALL} -d ${DESTDIR}/${LIBNAME}/${PROG}/sbin |