1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
## Process this file with automake to produce Makefile.in
AM_CPPFLAGS = \
-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
@DBUS_CFLAGS@
lib_LTLIBRARIES=libhal.la
libhalincludedir=$(includedir)/hal
libhalinclude_HEADERS = \
libhal.h
libhal_la_SOURCES = \
libhal.c \
libhal.h \
uthash.h
if GCOV
LIBGCOV = -lgcov
else
LIBGCOV =
endif
libhal_la_LIBADD = @DBUS_LIBS@ $(LIBGCOV) $(INTLLIBS)
libhal_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
clean-local :
rm -f *~
|