
targets = show_posix_ver  show_test_macros \
          test_config  

all : $(targets) test_ansi_c

$(targets)  : $$@.C
	CC -o $@ $@.C

test_ansi_c : test_ansi_c.c
	gcc -o $@ test_ansi_c.c

clean :
	/bin/rm -f $(targets) test_ansi_c
