mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-24 13:26:52 +03:00
fd09abaeb2
All editor private API stuff is located now in edit/edit-impl.h. Public API is located in edit/edit.h. Added functions to read some fields of WEdit struct. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
16 lines
440 B
Makefile
16 lines
440 B
Makefile
AM_CFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir) $(PCRE_CFLAGS)
|
|
|
|
if USE_EDIT
|
|
noinst_LIBRARIES = libedit.a
|
|
else
|
|
noinst_LIBRARIES =
|
|
endif
|
|
|
|
libedit_a_SOURCES = \
|
|
bookmark.c edit.c editcmd.c editwidget.c editdraw.c editkeys.c \
|
|
editmenu.c editoptions.c editcmddef.h edit-impl.h edit.h edit-widget.h \
|
|
editlock.c editlock.h syntax.c usermap.h usermap.c wordproc.c \
|
|
choosesyntax.c etags.c etags.h editcmd_dialogs.c editcmd_dialogs.h
|
|
|
|
EXTRA_DIST =
|