blob: 1b13d722b8ea32c498ce11ae37078f0b1a1d35fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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)
|