librazor/Makefile.am
author J. Ali Harlow <ali@juiblex.co.uk>
Wed Jan 07 18:00:06 2009 +0000 (2009-01-07)
changeset 326 e2ddf497b914
parent 248 057933050c42
child 335 636f120d1b5e
permissions -rw-r--r--
Support platforms where mkdir only takes one argument (eg., MS-Windows)
     1 ## Process this file with automake to produce Makefile.in
     2 
     3 INCLUDES = \
     4 	-I$(top_builddir)/gl -I$(top_srcdir)/gl \
     5 	-I$(top_builddir)/src -I$(top_srcdir)/src \
     6 	-DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \
     7 	-DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\" \
     8 	-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
     9 	-DPACKAGE_BIN_DIR=\""$(bindir)"\" \
    10 	-DPACKAGE_LOCALSTATE_DIR=\""$(localstatedir)"\" \
    11 	-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
    12 	-DPACKAGE_LIB_DIR=\""$(libdir)"\"
    13 
    14 lib_LTLIBRARIES = librazor.la
    15 
    16 librazorincludedir = $(includedir)/razor
    17 
    18 librazorinclude_HEADERS =              			\
    19 	razor.h
    20 
    21 librazor_la_SOURCES =                                	\
    22 	razor-internal.h				\
    23 	razor.h						\
    24 	razor.c						\
    25 	root.c						\
    26 	types.c						\
    27 	util.c						\
    28 	rpm.c						\
    29 	iterator.c					\
    30 	importer.c					\
    31 	merger.c					\
    32 	transaction.c
    33 
    34 librazor_la_LIBADD = $(ZLIB_LIBS) ../gl/libgnu.la
    35 
    36 clean-local :
    37 	rm -f *~
    38