Go back to git

This commit is contained in:
Roy Marples
2009-04-30 15:05:39 +01:00
parent e0f0fc8046
commit b70501ef45
16 changed files with 155 additions and 22 deletions

15
mk/gitignore.mk Normal file
View File

@@ -0,0 +1,15 @@
# rules to make .gitignore files
# Copyright 2008 Roy Marples <roy@marples.name>
# All rights reserved. Released under the 2-clause BSD license.
IGNOREFILES+= ${CLEANFILES}
.PHONY: .gitignore
.gitignore:
@if test -n "${IGNOREFILES}"; then \
echo "Ignoring ${IGNOREFILES}"; \
echo ${IGNOREFILES} | tr ' ' '\n' > .gitignore; \
fi
ignore: .gitignore