gmyth-upnp/src/Makefile.am
author melunko
Mon Apr 23 19:16:24 2007 +0100 (2007-04-23)
branchtrunk
changeset 587 747b409e4f01
parent 249 dcf6bffe29a1
child 696 7afeec40ed62
permissions -rw-r--r--
[svn r593] Fixed internal reference to gmyth.h. We can not include this header in src/gmyth_* files. Also fixed gmyth_debug link error. In the current implementation we need to include gmyth_debug.h in all files using gmyth_debug(), otherwise we will get library linking error
     1 SUBDIRS = .
     2 
     3 lib_LTLIBRARIES = libgmythupnp.la
     4 
     5 libgmythupnp_la_SOURCES = 			\
     6 	gmyth_upnp.c
     7 	
     8 libgmythupnp_la_CFLAGS = 			\
     9 	-DDATADIR=\"$(pkgdatadir)\" 	\
    10 	$(LIBGMYTH_CFLAGS)			\
    11 	$(CYBERLINK_CFLAGS)
    12 
    13 libgmythupnp_la_LDFLAGS = 			\
    14 	-export-dynamic 		\
    15 	$(LIBGMYTH_LIBS) 			\
    16 	$(CYBERLINK_LIBS)
    17 
    18 libgmythupnp_includedir = 			\
    19 	$(pkgincludedir)
    20 
    21 libgmythupnp_include_HEADERS =    		\
    22 	gmyth_upnp.h
    23 	
    24 CLEANFILES = $(BUILT_SOURCES)