mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
9c81ea49fd
* gdnd.c (get_action): Sensitize the menu items based on the allowed actions in the drag context. (actions): Add some underlined accelerators for the action menu. * gdesktop.c (icon_drag_motion): Use S_ISDIR() in addition to fe->f.link_to_dir. * gscreen.c (panel_file_list_scrolled): Removed this function, as it was not used for anything useful. * gdnd.c (gdnd_drop_on_directory): Duh. Use context->action, not context->suggested_action. 1999-01-25 Federico Mena Quintero <federico@nuclecu.unam.mx> * Makefile.am (libvfs_la_SOURCES): Added utilvfs.h. * Make-mc.in (VFSHDRS): Likewise.
57 lines
1.0 KiB
Makefile
57 lines
1.0 KiB
Makefile
## Process this file with automake to produce Makefile.in.
|
|
|
|
## FIXME: this is not nearly finished. It is pointless to try to use
|
|
## it without fixing it, and libvfs, first. Feel free!
|
|
|
|
|
|
## This file is used only by the Gnome libvfs build. If you make
|
|
## changes here, they must be synchronized with Make-mc.in.
|
|
|
|
lib_LTLIBRARIES = libvfs.la
|
|
|
|
BUILT_SOURCES = mad.c mad.h
|
|
|
|
libvfsincludedir=$(includedir)/vfs
|
|
|
|
libvfsinclude_HEADERS=vfs.h
|
|
|
|
EXTRA_DIST = mc-src/mad.c mc-src/mad.h
|
|
|
|
mad.c: mc-src/mad.c
|
|
$(LN_S) $(srcdir)/mc-src/mad.c mad.c
|
|
|
|
mad.h: mc-src/mad.h
|
|
$(LN_S) $(srcdir)/mc-src/mad.h mad.h
|
|
|
|
libvfs_la_SOURCES = \
|
|
container.c \
|
|
direntry.c \
|
|
extfs.c \
|
|
fish.c \
|
|
ftpfs.c \
|
|
local.c \
|
|
mcfs.c \
|
|
mcserv.c \
|
|
names.c \
|
|
sfs.c \
|
|
shared_ftp_fish.c \
|
|
shared_tar_ext.c \
|
|
tar.c \
|
|
tcputil.c \
|
|
undelfs.c \
|
|
utilvfs.c \
|
|
utilvfs.h \
|
|
vfs.c \
|
|
container.h \
|
|
extfs.h \
|
|
fish.h \
|
|
ftpfs.h \
|
|
mcfs.h \
|
|
names.h \
|
|
tar.h \
|
|
tcputil.h \
|
|
vfs.h \
|
|
xdirentry.h
|
|
|
|
libvfs_la_LDFLAGS = -version-info 27:0:27
|