blob: 0b3c3655681e6d82c93a33ca221695d550777a8d (
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
27
28
29
30
31
32
33
34
35
36
37
38
|
noinst_LTLIBRARIES = libmcfilemanager.la
libmcfilemanager_la_SOURCES = \
achown.c \
boxes.c boxes.h \
cd.c cd.h \
chmod.c \
chown.c \
cmd.c cmd.h \
command.c command.h \
dir.c dir.h \
ext.c ext.h \
file.c file.h \
filegui.c filegui.h \
filemanager.h filemanager.c \
filenot.c filenot.h \
fileopctx.c fileopctx.h \
find.c \
hotlist.c hotlist.h \
info.c info.h \
ioblksize.h \
layout.c layout.h \
mountlist.c mountlist.h \
panelize.c panelize.h \
panel.c panel.h \
tree.c tree.h \
treestore.c treestore.h
# Unmaintained, unsupported, etc
# listmode.c listmode.h
AM_CPPFLAGS = -I$(top_srcdir) $(GLIB_CFLAGS)
if ENABLE_EXT2FS_ATTR
libmcfilemanager_la_SOURCES += \
chattr.c
endif
|