diff options
Diffstat (limited to 'make')
-rw-r--r-- | make/template/main.mk | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/make/template/main.mk b/make/template/main.mk index e2688cefa..e201432a9 100644 --- a/make/template/main.mk +++ b/make/template/main.mk @@ -167,9 +167,11 @@ install: target@EXTRA_DIR@ @echo "* REMEMBER TO EDIT YOUR CONFIG FILE *" @echo "*************************************" -@GNU_ONLY RCS_FILES = $(wildcard .git/index .svn/entries .config.cache) -@GNU_ONLY GNUmakefile: make/template/main.mk configure $(RCS_FILES) -@GNU_ONLY ./configure -update +@GNU_ONLY RCS_FILES = $(wildcard .git/index .svn/entries src/version.sh) +@BSD_ONLY RCS_FILES = src/version.sh +GNUmakefile BSDmakefile: make/template/main.mk configure $(RCS_FILES) + ./configure -update +@BSD_ONLY .MAKEFILEDEPS: BSDmakefile clean: @echo Cleaning... |