librazor/Makefile.am
author Kristian H?gsberg <krh@redhat.com>
Fri Jun 20 23:13:09 2008 -0400 (2008-06-20)
changeset 257 0c3db660514d
parent 241 c3eb520e2219
child 323 3b24a0bd41ee
permissions -rw-r--r--
When uniquifying properties, also sort them on the owning package.

This ensures that whenever two packages provide or (or require, obsolete
or conflict) the same property, they appear in the same order in the
propertys list of packages.
     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 	root.c						\
    25 	types.c						\
    26 	util.c						\
    27 	rpm.c						\
    28 	iterator.c					\
    29 	importer.c					\
    30 	merger.c					\
    31 	transaction.c
    32 
    33 librazor_la_LIBADD = $(ZLIB_LIBS)
    34 
    35 clean-local :
    36 	rm -f *~
    37