Add a gitignore make target.

This commit is contained in:
Roy Marples
2008-03-03 13:04:08 +00:00
parent 61c476e72d
commit 7a8e9d4ddb
18 changed files with 145 additions and 17 deletions

View File

@@ -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