mirror of
https://github.com/love2d/megasource.git
synced 2026-08-16 16:21:13 +02:00
17 lines
336 B
Makefile
17 lines
336 B
Makefile
all_include = $(srcdir)/../include
|
|
AM_CPPFLAGS = -I $(all_include)
|
|
|
|
check_PROGRAMS = testil
|
|
check_SCRIPTS = format_test/format_checks.sh
|
|
|
|
testil_SOURCES = format_test/testil.c
|
|
testil_LDADD =
|
|
if BUILD_ILU
|
|
testil_LDADD += ../lib/libILU.la
|
|
else
|
|
testil_LDADD += ../lib/libIL.la
|
|
endif
|
|
|
|
TESTS_ENVIRONMENT = /bin/bash
|
|
TESTS = $(check_SCRIPTS)
|