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
|
AM_CPPFLAGS = -I$(top_srcdir)/compat/include
noinst_LTLIBRARIES = libcompat.la
libcompat_la_SOURCES = \
bylabel.c \
compaterr.c \
compatglob.c \
dumprestore.c \
rmtflags.c \
system.c
libcompat_la_LIBADD = \
$(BLKID_LIBS)
# List headers for `make dist` to pull in.
libcompat_la_SOURCES += \
../include/bsdcompat.h \
../include/bylabel.h \
../include/compaterr.h \
../include/compatglob.h \
../include/darwin.h \
../include/pathnames.h \
../include/rmtflags.h \
../include/system.h \
../include/protocols/dumprestore.h
|