librazor/Makefile.am
author Richard Hughes <rhughes@redhat.com>
Mon Jun 16 17:54:29 2008 -0400 (2008-06-16)
changeset 242 f2218527ad4a
child 248 057933050c42
permissions -rw-r--r--
Add spec file.

committer: Kristian H?gsberg <krh@redhat.com>
     1 ## Process this file with automake to produce Makefile.in
     2 
     3 INCLUDES = \
     4 	-I$(top_builddir)/src -I$(top_srcdir)/src \
     5 	-DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \
     6 	-DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\" \
     7 	-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
     8 	-DPACKAGE_BIN_DIR=\""$(bindir)"\" \
     9 	-DPACKAGE_LOCALSTATE_DIR=\""$(localstatedir)"\" \
    10 	-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
    11 	-DPACKAGE_LIB_DIR=\""$(libdir)"\"
    12 
    13 lib_LTLIBRARIES = librazor.la
    14 
    15 librazorincludedir = $(includedir)/razor
    16 
    17 librazorinclude_HEADERS =              			\
    18 	razor.h
    19 
    20 librazor_la_SOURCES =                                	\
    21 	razor-internal.h				\
    22 	razor.h						\
    23 	razor.c						\
    24 	razor-root.c					\
    25 	types.h						\
    26 	types.c						\
    27 	util.c						\
    28 	rpm.c
    29 
    30 librazor_la_LIBADD = $(ZLIB_LIBS)
    31 
    32 clean-local :
    33 	rm -f *~
    34