librazor/Makefile.am
changeset 241 c3eb520e2219
child 248 057933050c42
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/librazor/Makefile.am	Mon Jun 16 15:40:30 2008 -0400
     1.3 @@ -0,0 +1,34 @@
     1.4 +## Process this file with automake to produce Makefile.in
     1.5 +
     1.6 +INCLUDES = \
     1.7 +	-I$(top_builddir)/src -I$(top_srcdir)/src \
     1.8 +	-DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \
     1.9 +	-DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\" \
    1.10 +	-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
    1.11 +	-DPACKAGE_BIN_DIR=\""$(bindir)"\" \
    1.12 +	-DPACKAGE_LOCALSTATE_DIR=\""$(localstatedir)"\" \
    1.13 +	-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
    1.14 +	-DPACKAGE_LIB_DIR=\""$(libdir)"\"
    1.15 +
    1.16 +lib_LTLIBRARIES = librazor.la
    1.17 +
    1.18 +librazorincludedir = $(includedir)/razor
    1.19 +
    1.20 +librazorinclude_HEADERS =              			\
    1.21 +	razor.h
    1.22 +
    1.23 +librazor_la_SOURCES =                                	\
    1.24 +	razor-internal.h				\
    1.25 +	razor.h						\
    1.26 +	razor.c						\
    1.27 +	razor-root.c					\
    1.28 +	types.h						\
    1.29 +	types.c						\
    1.30 +	util.c						\
    1.31 +	rpm.c
    1.32 +
    1.33 +librazor_la_LIBADD = $(ZLIB_LIBS)
    1.34 +
    1.35 +clean-local :
    1.36 +	rm -f *~
    1.37 +