blob: ed2e6bf2748801a8d9dd39e3e5f85f231b09874f (
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
|
METASOURCES = AUTO
INCLUDES = -I$(top_srcdir)/src
noinst_LTLIBRARIES = libfilesystem.la
noinst_HEADERS = \
diskfile.h \
file.h \
filestream.h \
filesystem.h \
inifile.h \
inistream.h
libfilesystem_la_SOURCES = \
diskfile.cc \
file.cc \
filestream.cc \
filesystem.cc \
inifile.cc \
inistream.cc
libfilesystem_la_LDFLAGS = -avoid-version -no-undefined
libfilesystem_la_DEPENDENCIES = \
$(top_builddir)/src/sys/libsys.la
libfilesystem_la_LIBADD =
|