diff options
author | svntobi <svntobi@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2007-07-27 19:40:59 +0000 |
---|---|---|
committer | svntobi <svntobi@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2007-07-27 19:40:59 +0000 |
commit | 1bd05f5ef4ca894c09b2eedec36d15504c368f33 (patch) | |
tree | 2272a2a85317508a1455b3f63bdc65aee47bc0cf | |
parent | 8c748c9a7bcf7d960b2c76b52a42a6b3b1707334 (diff) | |
download | vdr-plugin-menuorg-1bd05f5ef4ca894c09b2eedec36d15504c368f33.tar.gz vdr-plugin-menuorg-1bd05f5ef4ca894c09b2eedec36d15504c368f33.tar.bz2 |
fixed makefile
git-svn-id: file:///home/tobias/sandbox/vdr/--/vdr-pkg/vdr-pkg/submenu/trunk@5657 cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f
-rw-r--r-- | Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -17,7 +17,8 @@ VERSION = $(shell grep 'static const char VERSION\[\] =' src/version.h | \ ### The C++ compiler and options: CXX ?= g++ -CXXFLAGS ?= -fPIC -O2 -Wall -Woverloaded-virtual `pkg-config libxml++-2.6 --cflags --libs` +CXXFLAGS ?= -fPIC -O2 -Wall -Woverloaded-virtual + ### The directory environment: @@ -42,9 +43,10 @@ PACKAGE = vdr-$(ARCHIVE) ### Includes, Libs and Defines (add further entries here): -# LIBS += `curl-config --libs` - INCLUDES += -I. -I$(VDRDIR)/include -I$(DVBDIR)/include +INCLUDES += `pkg-config libxml++-2.6 --cflags` + +LIBS += `pkg-config libxml++-2.6 --libs` DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' |