blob: eb921ee08ae4a87331250206905cbcf7bcaa0298 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Makefile for misc library.
AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) -I$(top_builddir)/include/rpm
AM_CPPFLAGS += -I$(top_srcdir)/misc
EXTRA_DIST = \
basename.c \
fakefork.c fnmatch.c fnmatch.h \
getcwd.c getmntent.c \
getwd.c glob.c glob.h \
myrealloc.c putenv.c realpath.c \
setenv.c stpcpy.c stpncpy.c
noinst_LTLIBRARIES = libmisc.la
libmisc_la_SOURCES =
libmisc_la_LIBADD = @LTLIBOBJS@
|