aboutsummaryrefslogtreecommitdiff
path: root/xsde/makefile
diff options
context:
space:
mode:
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.