
targets = test_sem


all : $(targets)

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

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