mirror of
https://github.com/troglobit/editline.git
synced 2025-05-06 04:21:24 +08:00

===================== Fix another build warning for Arm cross-gcc, which actually was v4.1.2 This time getpid() was missing unistd.h, but kill() was also missing signal.h. Added test for signal.h, but left out unistd.h since we already define SYS_UNIX -- which we should really check for instead... The rest are cosmetic prototype or automake/autoconf fixes.
11 lines
229 B
Makefile
11 lines
229 B
Makefile
AUTOMAKE_OPTIONS = foreign
|
|
|
|
LDADD = $(top_builddir)/src/libedit.a
|
|
AM_CFLAGS = -I$(top_srcdir)/src
|
|
|
|
# TODO: Port "fileman" example from BSD editline
|
|
noinst_PROGRAMS = testit
|
|
|
|
testit_SOURCES = testit.c
|
|
#fileman_SOURCES = fileman.c
|