diff options
author | Roy Marples <roy@marples.name> | 2008-03-03 13:04:08 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-03-03 13:04:08 +0000 |
commit | 7a8e9d4ddbe121bf2cafb095e9ecf262bc074133 (patch) | |
tree | 4bb8ef4bd3b8c4096356db12f7d6f62090ffc002 /src/rc/Makefile | |
parent | 61c476e72d7da6866ea9e3ba6a8d1e7bb295b7aa (diff) |
Add a gitignore make target.
Diffstat (limited to 'src/rc/Makefile')
-rw-r--r-- | src/rc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rc/Makefile b/src/rc/Makefile index fea22214..26ee1312 100644 --- a/src/rc/Makefile +++ b/src/rc/Makefile @@ -27,6 +27,8 @@ RC_SBINLINKS= mark_service_starting mark_service_started \ mark_service_inactive mark_service_wasinactive \ mark_service_coldplugged mark_service_failed \ rc-abort +ALL_LINKS= ${BINLINKS} ${SBINLINKS} ${RC_BINLINKS} ${RC_SBINLINKS} +CLEANFILES+= ${ALL_LINKS} LDFLAGS+= -L../librc -L../libeinfo LDADD+= -lutil -lrc -leinfo @@ -66,7 +68,5 @@ install: all ${INSTALL} -m ${PAMMODE} start-stop-daemon.pam ${DESTDIR}${PAMDIR}/start-stop-daemon; \ fi -ALL_LINKS = $(BINLINKS) $(SBINLINKS) $(RC_BINLINKS) $(RC_SBINLINKS) -CLEANFILES += $(ALL_LINKS) links: rc - for l in $(ALL_LINKS) ; do ln -sf rc $$l || exit $$? ; done + for l in ${ALL_LINKS}; do ln -sf rc $$l || exit $$? ; done |