mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-10 13:32:31 +03:00
6c5f5bf768
* moved from lib/vfs/mc-vfs to lib/vfs; * split by directories for VFS-plugins and moved to src/vfs; * lib/vfs/vfs-impl.h was merged into lib/vfs/vfs.h. Signed-off-by: Andrew Borodin <aborodin@vmail.ru> Signed-off-by: Slava Zanko <slavazanko@gmail.com>
16 lines
275 B
Makefile
16 lines
275 B
Makefile
noinst_LTLIBRARIES = libmcvfs.la
|
|
|
|
AM_CFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir)
|
|
|
|
libmcvfs_la_SOURCES = \
|
|
vfs.c vfs.h \
|
|
direntry.c xdirentry.h \
|
|
utilvfs.c utilvfs.h \
|
|
gc.c gc.h
|
|
|
|
if ENABLE_VFS_NET
|
|
libmcvfs_la_SOURCES += netutil.c netutil.h
|
|
endif
|
|
|
|
EXTRA_DIST = HACKING README
|