Ignore fixes.

This commit is contained in:
Roy Marples 2008-03-03 13:14:54 +00:00
parent 7a8e9d4ddb
commit f35c879bb8
5 changed files with 8 additions and 3 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
*.bz2
openrc-0.1.tar.bz2

View File

@ -2,7 +2,7 @@
# Copyright 2008 Roy Marples <roy@marples.name>
GITREF?= HEAD
DISTPREFIX?= ${PROG}-${VERSION}
DISTPREFIX?= ${NAME}-${VERSION}
DISTFILE?= ${DISTPREFIX}.tar.bz2
CLEANFILES+= ${DISTFILE}

View File

@ -3,8 +3,11 @@
IGNOREFILES+= ${CLEANFILES}
.PHONY: .gitignore
.gitignore:
for obj in ${IGNOREFILES}; do \
@if test -n "${IGNOREFILES}"; then echo "Ignoring ${IGNOREFILES}"; fi
@for obj in ${IGNOREFILES}; do \
if ! test -r .gitignore; then \
echo "$${obj}" > .gitignore || exit $$?; \
elif ! grep -q "^$${obj}$$" .gitignore; then \

View File

@ -40,6 +40,6 @@ install: all realinstall ${INSTALLAFTER}
# so we ensure that it has a bogus argument
CLEANFILES+= ${OBJS}
clean:
if test -n "${CLEANFILES}"; then rm -f ${CLEANFILES}; fi
@if test -n "${CLEANFILES}"; then echo "rm -f ${CLEANFILES}"; rm -f ${CLEANFILES}; fi
include ${MK}/gitignore.mk

View File

@ -31,6 +31,7 @@ done
all:
${_SUBDIR}
clean:
@if test -n "${CLEANFILES}"; then echo "rm -f ${CLEANFILES}"; rm -f ${CLEANFILES}; fi
${_SUBDIR}
realinstall:
${_SUBDIR}