blob: 5741959283a85df1f3a194d4d67d2a9d0b3bda92 (
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
|
EXTRA_DIST =
if USE_INTERNAL_EDIT
noinst_LTLIBRARIES = libedit.la
else
noinst_LTLIBRARIES =
endif
libedit_la_SOURCES = \
bookmark.c \
edit-impl.h \
edit.c edit.h \
editcomplete.c editcomplete.h \
editbuffer.c editbuffer.h \
editcmd.c \
editdraw.c \
editmacros.c editmacros.h \
editmenu.c \
editoptions.c \
editsearch.c editsearch.h \
editwidget.c editwidget.h \
etags.c etags.h \
format.c \
syntax.c
if USE_ASPELL
if HAVE_GMODULE
libedit_la_SOURCES += \
spell.c spell.h
endif
endif
AM_CPPFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir) $(PCRE_CPPFLAGS)
|