Home | History | Annotate | Download | only in serial
      1 
      2 if SERIALPLUGIN
      3 plugindir = $(libdir)/bluetooth/plugins
      4 
      5 plugin_LTLIBRARIES = serial.la
      6 
      7 serial_la_SOURCES = main.c \
      8 			manager.h manager.c port.h port.c \
      9 			proxy.h proxy.c
     10 
     11 LDADD = $(top_builddir)/common/libhelper.a \
     12 		@GDBUS_LIBS@ @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@
     13 endif
     14 
     15 AM_LDFLAGS = -module -avoid-version -no-undefined
     16 
     17 AM_CFLAGS = -fvisibility=hidden \
     18 		@BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ @GDBUS_CFLAGS@
     19 
     20 INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/src
     21 
     22 EXTRA_DIST = serial.conf
     23 
     24 MAINTAINERCLEANFILES = Makefile.in
     25