include ../.Makefile.common COBJS=$(shell find . -type f -name "task*.c" | sed "s/\(.*\)\.c/\1.o/g") TARGETS=$(shell find . -type f -name "task*.c" | sed "s/\(.*\)\.c/\1/g") all: $(TARGETS) test: @sh ./test.sh clean: @echo -e "\tDEL\t$(TARGETS)" @rm $(TARGETS)