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