summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-12-11 06:49:02 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-12-11 06:49:02 -0800
commit5f8b579b46da948871b027748ef7beedc528ae14 (patch)
treedaed3aae770fffd1045d8ac16f332f08216a32c8 /Makefile
parentb078354aa1a2e24c827307764521e9666670eb11 (diff)
downloadtxr-5f8b579b46da948871b027748ef7beedc528ae14.tar.gz
txr-5f8b579b46da948871b027748ef7beedc528ae14.tar.bz2
txr-5f8b579b46da948871b027748ef7beedc528ae14.zip
* configure (have_git): New variable and configure test for git.
* Makefile (SRCS): Only set if git is available. (enforce): Fail if we don't have git.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 56169677..2e762ff3 100644
--- a/Makefile
+++ b/Makefile
@@ -45,11 +45,14 @@ OBJS += arith.o hash.o utf8.o filter.o eval.o rand.o combi.o sysif.o
OBJS-$(debug_support) += debug.o
OBJS-$(have_syslog) += syslog.o
OBJS-$(have_posix_sigs) += signal.o
+
+ifneq ($(have_git),)
SRCS := $(addprefix $(top_srcdir)/,\
$(filter-out lex.yy.c y.tab.c y.tab.h,\
$(shell git --work-tree=$(top_srcdir) \
--git-dir=$(top_srcdir)/.git \
ls-files "*.c" "*.h" "*.l" "*.y")))
+endif
# MPI objects
MPI_OBJ_BASE=mpi.o mplogic.o
@@ -233,9 +236,14 @@ endef
.PHONY: enforce
enforce:
+ifneq ($(have_git),)
$(call GREP_CHECK,'\<void[ ]*\*',void *,1,-v 'typedef void \*yyscan_t')
$(call GREP_CHECK,' ',tabs,0,'.')
$(call GREP_CHECK,' $$',trailing spaces,0,'.')
+else
+ echo "enforce requires git"
+ exit 1
+endif
#
# Installation macro.