summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-03-31 05:50:57 -0700
committerKaz Kylheku <kaz@kylheku.com>2017-03-31 05:50:57 -0700
commit0fe9b6ac5cc2f57275dcaf721636b7a365e9b3fd (patch)
treef6b349b266063fb49f34f797b615519bcc502ecb /Makefile
parented78c198eaeefa3a3cadfedd8ee1fa5650f466e6 (diff)
downloadtxr-0fe9b6ac5cc2f57275dcaf721636b7a365e9b3fd.tar.gz
txr-0fe9b6ac5cc2f57275dcaf721636b7a365e9b3fd.tar.bz2
txr-0fe9b6ac5cc2f57275dcaf721636b7a365e9b3fd.zip
Fix broken out-of-tree build.
Reported by Marco Wahl. When building in a separate directory, the y.tab.h file isn't found because the current directory is not searched by the compiler. It searches only the original source tree and the local config directory. * Makefile (TXR_CFLAGS): We must have . in the include file search path otherwise files can only find y.tab.h when it's in the same directory where they are.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a3026e1e..fce8e628 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,8 @@
VERBOSE :=
TXR_CFLAGS := $(CFLAGS)
-TXR_CFLAGS += -iquote $(conf_dir) $(if $(top_srcdir),-iquote $(top_srcdir)) \
+TXR_CFLAGS += -iquote $(conf_dir) \
+ -iquote . $(if $(top_srcdir), -iquote $(top_srcdir)) \
$(LANG_FLAGS) $(DIAG_FLAGS) \
$(DBG_FLAGS) $(PLATFORM_CFLAGS) $(EXTRA_FLAGS)
TXR_CFLAGS += $(filter-out $(REMOVE_FLAGS),$(TXR_CFLAGS))