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