aboutsummaryrefslogtreecommitdiff
path: root/xsde/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-05-08 10:25:27 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-05-08 10:25:27 +0200
commitdbf114e5cb7eefcddc961af4558494d203d32e30 (patch)
tree303bb7b3a35eeed8ba5352979b3d7318b8a58bd4 /xsde/makefile
parent905a5eb6081c15ee3c122200f1dae7a00017999f (diff)
Add dependency on libcutl
Diffstat (limited to 'xsde/makefile')
-rw-r--r--xsde/makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/xsde/makefile b/xsde/makefile
index 308d460..eaa97ff 100644
--- a/xsde/makefile
+++ b/xsde/makefile
@@ -100,6 +100,10 @@ install := $(out_base)/.install
# 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)
@@ -119,20 +123,19 @@ $(call import,\
$(scf_root)/import/libxsd-frontend/stub.make,\
l: xsd_fe.l,cpp-options: xsd_fe.l.cpp-options)
-
# Build.
#
-$(xsde): $(cxx_obj) $(xsd_fe.l) $(be.l) $(cult.l) $(fs.l) $(re.l)
+$(xsde): $(cxx_obj) $(xsd_fe.l) $(be.l) $(cult.l) $(cutl.l) $(fs.l) $(re.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)
-
$(call include-dep,$(cxx_od))
# Alias for default target.