summaryrefslogtreecommitdiff
path: root/pages/Makefile
diff options
context:
space:
mode:
authorRolf Ahrenberg <Rolf.Ahrenberg@sci.fi>2011-02-21 23:06:57 +0200
committerDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2011-02-22 00:42:00 +0100
commit45ff354dd802a9994d676eafff14499fd91d1946 (patch)
tree0a588bd2ed2077f8380b49e6e99eb85d5550e6dc /pages/Makefile
parent07926dfda9e1d492f46049cf3a787106946c4690 (diff)
downloadvdr-plugin-live-45ff354dd802a9994d676eafff14499fd91d1946.tar.gz
vdr-plugin-live-45ff354dd802a9994d676eafff14499fd91d1946.tar.bz2
Added support for HAVE_LIBPCRECPP.
Diffstat (limited to 'pages/Makefile')
-rw-r--r--pages/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/Makefile b/pages/Makefile
index 8ce12db..db9436a 100644
--- a/pages/Makefile
+++ b/pages/Makefile
@@ -51,7 +51,7 @@ all: libpages.a
### Implicit rules:
%.o: %.cpp
- $(CXX) $(CXXFLAGS) $(TNTFLAGS) -c $(DEFINES) $(INCLUDES) $<
+ $(CXX) $(CXXFLAGS) $(TNTFLAGS) -c $(DEFINES) $(FEATURES) $(INCLUDES) $<
%.cpp: %.ecpp
$(ECPPC) $(ECPPFLAGS) $(ECPPFLAGS_CPP) $<
@@ -61,7 +61,7 @@ all: libpages.a
MAKEDEP = $(CXX) -MM -MG
DEPFILE = .dependencies
$(DEPFILE): Makefile $(OBJS:%.o=%.cpp) $(OBJS:%.o=%.ecpp)
- @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.cpp) > $@
+ @$(MAKEDEP) $(DEFINES) $(FEATURES) $(INCLUDES) $(OBJS:%.o=%.cpp) > $@
ifneq ($(MAKECMDGOALS),clean)
-include $(DEPFILE)