From a4be9ff0a1e6e7d943d5a2b6f0736aa1f08d9ca2 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 5 Dec 2014 07:45:41 -0800 Subject: * Makefile (SRCS): Compute from top_srcdir, so we don't get a warning from git, and "make enforce" works from out of three builds. --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7d6f74d0..a931ffb7 100644 --- a/Makefile +++ b/Makefile @@ -44,8 +44,11 @@ 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 -SRCS := $(filter-out lex.yy.c y.tab.c y.tab.h,\ - $(shell git ls-files "*.c" "*.h" "*.l" "*.y")) +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"))) # MPI objects MPI_OBJ_BASE=mpi.o mplogic.o -- cgit v1.2.3