summaryrefslogtreecommitdiff
path: root/xsd/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-05-08 10:23:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-05-08 10:23:11 +0200
commitab392684ea4502b09b9a20655ed89be1379b9d90 (patch)
tree53f170d9e98888a70b6229235090e2d307723e05 /xsd/makefile
parent367b86d8ae073119b93c7cf0cc1b0017d2e13ad6 (diff)
Add dependency on libcutl
Diffstat (limited to 'xsd/makefile')
-rw-r--r--xsd/makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/xsd/makefile b/xsd/makefile
index 1826a15..8ecf5ca 100644
--- a/xsd/makefile
+++ b/xsd/makefile
@@ -72,6 +72,10 @@ clean := $(out_base)/.clean
# Import.
#
$(call import,\
+ $(scf_root)/import/libcutl/stub.make,\
+ l: cutl.l,cpp-options: cutl.l.cpp-options)
+
+$(call import,\
$(scf_root)/import/libcult/stub.make,\
l: cult.l,cpp-options: cult.l.cpp-options)
@@ -97,13 +101,14 @@ $(call import,\
# Build.
#
-$(xsd): $(cxx_obj) $(xsd_fe.l) $(be.l) $(cult.l) $(fs.l) $(re.l) $(xerces_c.l)
+$(xsd): $(cxx_obj) $(xsd_fe.l) $(be.l) $(cult.l) $(cutl.l) $(fs.l) $(re.l) $(xerces_c.l)
$(cxx_obj) $(cxx_od): cpp_options := -I$(src_base)
$(cxx_obj) $(cxx_od): \
$(xsd_fe.l.cpp-options) \
$(be.l.cpp-options) \
$(cult.l.cpp-options) \
+ $(cutl.l.cpp-options) \
$(fs.l.cpp-options) \
$(re.l.cpp-options) \
$(xerces_c.l.cpp-options)