mirror of
https://github.com/troglobit/editline.git
synced 2025-05-07 05:11:13 +08:00

This is a much cleaner design and also works with or without the configure --enable-default-complete option. See the examples for details.
11 lines
227 B
Makefile
11 lines
227 B
Makefile
AUTOMAKE_OPTIONS = foreign
|
|
|
|
lib_LIBRARIES = libedit.a
|
|
|
|
libedit_a_SOURCES = editline.c editline.h sysunix.c unix.h
|
|
if COMPLETE
|
|
# Built-in completion handler.
|
|
libedit_a_SOURCES += complete.c
|
|
AM_CPPFLAGS = -DCOMPLETE
|
|
endif
|