Cairo: changed build.io to make the addon compile on my machine
[io/quag.git] / tools / editlib_test / Makefile
blobf1d2754527b3a3bfc6fedcc85b1a4e3210a07b08
1 LDFLAGS=-ledit
2 editlib_test: editlib_test.c
4 clean:
5 $(RM) editlib_test
7 hasEditLib := $(wildcard editlib_test)
8 ifeq ($(strip $(hasEditLib)),)
9 warn:
10 @echo
11 @echo "Compiling libedit test [FAILED]"
12 @echo " - Command line history disabled"
13 @echo
14 else
15 warn:
16 endif
18 .PHONY: clean warn