summaryrefslogtreecommitdiff
path: root/src/context/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/context/Makefile.in')
-rw-r--r--src/context/Makefile.in12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/context/Makefile.in b/src/context/Makefile.in
index 99c69fa92..a7a000c3e 100644
--- a/src/context/Makefile.in
+++ b/src/context/Makefile.in
@@ -67,6 +67,15 @@ CXXLD = $(CXX)
CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+CCLD = $(CC)
+LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
+ $(LDFLAGS) -o $@
SOURCES = $(libcontext_la_SOURCES)
DIST_SOURCES = $(libcontext_la_SOURCES)
ETAGS = etags
@@ -211,7 +220,8 @@ AM_CXXFLAGS = -Wall -fvisibility=hidden
AM_CPPFLAGS = -D__BUILDING_CVC4LIB
noinst_LTLIBRARIES = libcontext.la
libcontext_la_SOURCES = \
- context.cpp
+ context.cpp \
+ context.h
all: all-am
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback