diff options
author | methodus <methodus@web.de> | 2012-10-03 22:34:14 +0200 |
---|---|---|
committer | methodus <methodus@web.de> | 2012-10-03 22:34:14 +0200 |
commit | d3be5479f0a3eee76ab8b98b1c6488b3cf5e50a5 (patch) | |
tree | d9b424029362ced5c48bf39e4670688f68c3c89b /Makefile | |
parent | 8bfbe9ae40adccea37598b067340330521a9a5f8 (diff) | |
download | vdr-plugin-upnp-d3be5479f0a3eee76ab8b98b1c6488b3cf5e50a5.tar.gz vdr-plugin-upnp-d3be5479f0a3eee76ab8b98b1c6488b3cf5e50a5.tar.bz2 |
Splitted tools.h into several tool headers to avoid clashed for example when only requiring string tools but not ixml tools.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -72,12 +72,13 @@ OBJS = $(PLUGIN).o \ common/tools.o \ common/parser.o \ common/setup.o \ + common/ixml.o \ media/profile.o \ media/mediaManager.o \ media/pluginManager.o \ $(TNTOBJ) -LIBS += -lupnp -lcxxtools -ltntnet -ltntdb +LIBS += -lupnp -lcxxtools -ltntnet -ltntdb -ldl ### The main target: @@ -128,7 +129,7 @@ i18n: $(I18Nmsgs) $(I18Npot) ### Targets: libvdr-$(PLUGIN).so: $(OBJS) - $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) $(LIBS) -o $@ + $(CXX) $(CXXFLAGS) $(LDFLAGS) -rdynamic -shared $(OBJS) $(LIBS) -o $@ @cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION) dist: $(I18Npo) clean |