summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Chimento <philip.chimento@gmail.com>2015-12-01 22:07:29 -0800
committerPhilip Chimento <philip.chimento@gmail.com>2018-02-08 22:22:38 -0800
commit0fd053f485767a1a42f5e73c4f2f122027505731 (patch)
treef9fc1f7c7d418ed6b92ae3675ad83686a64c6d39
parent6bc026104504275f7310fc796bc65ebf1941f82f (diff)
downloadgobject-introspection-0fd053f485767a1a42f5e73c4f2f122027505731.tar.gz
build: Built sources show up in subdirs
Since activating the subdir-objects option, the .c and .h files generated by Yacc and Lex will show up in the same directory as the source .y and .l files. The Makefile's BUILT_SOURCES directive should reflect that. See #120.
-rw-r--r--Makefile-giscanner.am12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile-giscanner.am b/Makefile-giscanner.am
index b0e13732..06bc4be4 100644
--- a/Makefile-giscanner.am
+++ b/Makefile-giscanner.am
@@ -1,15 +1,15 @@
## Process this file with automake to produce Makefile.in
-BUILT_SOURCES += \
- scannerparser.c \
- scannerparser.h \
- scannerlexer.c \
- scannerlexer.h
+BUILT_SOURCES += \
+ giscanner/scannerparser.c \
+ giscanner/scannerparser.h \
+ giscanner/scannerlexer.c \
+ giscanner/scannerlexer.h
AM_YFLAGS = -d -t
# Why do I have to do this automake?
-scannerlexer.h: scannerlexer.c
+giscanner/scannerlexer.h: giscanner/scannerlexer.c
noinst_LTLIBRARIES += libgiscanner.la