TARGETS = \
	patch-fstring patch-fstring_kurz \
	patch-fstring-sicher patch-fstring-sicher_kurz \
	parse-int parse-int_kurz \
	foo foo_kurz \
	foo-wrapper foo-wrapper_kurz \
	environment environment_kurz \
	path-tests path-tests_kurz \
	is-absolute-path is-absolute-path_kurz
# parse-int_kurz
#	overflow
CFLAGS = -g -Wall -Werror
CFLAGS += -pedantic -Wpointer-arith -Wstrict-prototypes
CFLAGS += -L/home/luthien/beruf/src/gateguardian/src/.libs
CFLAGS += -I/home/luthien/beruf/src/gateguardian/src

all: $(TARGETS)

$(TARGETS): % : %.c

clean:
	rm -f $(TARGETS)
