librazor/Makefile.am
author J. Ali Harlow <ali@juiblex.co.uk>
Fri Jan 09 15:28:50 2009 +0000 (2009-01-09)
changeset 340 5962a461a5a3
parent 323 3b24a0bd41ee
child 352 4866573c6944
permissions -rw-r--r--
Use CSIDL on MS-Windows platforms instead of FHS paths.
rhughes@241
     1
## Process this file with automake to produce Makefile.in
rhughes@241
     2
rhughes@241
     3
INCLUDES = \
ali@323
     4
	-I$(top_builddir)/gl -I$(top_srcdir)/gl \
rhughes@241
     5
	-I$(top_builddir)/src -I$(top_srcdir)/src \
rhughes@241
     6
	-DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \
rhughes@241
     7
	-DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\" \
rhughes@241
     8
	-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
rhughes@241
     9
	-DPACKAGE_BIN_DIR=\""$(bindir)"\" \
rhughes@241
    10
	-DPACKAGE_LOCALSTATE_DIR=\""$(localstatedir)"\" \
rhughes@241
    11
	-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
rhughes@241
    12
	-DPACKAGE_LIB_DIR=\""$(libdir)"\"
rhughes@241
    13
rhughes@241
    14
lib_LTLIBRARIES = librazor.la
rhughes@241
    15
rhughes@241
    16
librazorincludedir = $(includedir)/razor
rhughes@241
    17
rhughes@241
    18
librazorinclude_HEADERS =              			\
rhughes@241
    19
	razor.h
rhughes@241
    20
rhughes@241
    21
librazor_la_SOURCES =                                	\
rhughes@241
    22
	razor-internal.h				\
rhughes@241
    23
	razor.h						\
rhughes@241
    24
	razor.c						\
krh@248
    25
	root.c						\
rhughes@241
    26
	types.c						\
rhughes@241
    27
	util.c						\
krh@248
    28
	rpm.c						\
krh@248
    29
	iterator.c					\
krh@248
    30
	importer.c					\
krh@248
    31
	merger.c					\
krh@248
    32
	transaction.c
rhughes@241
    33
ali@335
    34
librazor_la_LIBADD = $(ZLIB_LIBS) ../gl/libgnu.la $(EXTRA_LIBS)
rhughes@241
    35
rhughes@241
    36
clean-local :
rhughes@241
    37
	rm -f *~
rhughes@241
    38