AM_CFLAGS = -Wall -Wextra noinst_LIBRARIES = libeps.a libeps_a_SOURCES = grammar.c list.c input.c \ grammar.h list.h util.h input.h libeps_a_CFLAGS = $(AM_CFLAGS) --pedantic # Make TAGS automatically all-local: MYTAGS MYTAGS: $(TAGS_DEPENDENCIES) $(am__tagged_files) @if $(AM_V_P); then $(MAKE) TAGS; else echo "MAKE TAGS"; \ $(MAKE) TAGS > /dev/null; fi; CLEANFILES = TAGS # tests check_PROGRAMS = check_list check_grammar check_list_SOURCES = test/check_list.c list.c check_grammar_SOURCES = test/check_grammar.c list.c grammar.c TESTS = $(check_PROGRAMS) AM_COLOR_TESTS = always