blob: 8b0ffbd088fe333749b0c686a1285ea30a966716 (
plain)
1
2
3
4
5
6
7
8
9
|
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)
clean:
@echo -e "\tDEL\t$(TARGETS)"
@rm $(TARGETS)
|