You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
359 B
15 lines
359 B
vpath %.c ../../src/stream
|
|
vpath %.c ../../src/stream/interface
|
|
|
|
OBJECTS = stream.o read.o write.o reader.o writer.o
|
|
|
|
%.o: %.c
|
|
gcc -Wall -ggdb -O0 -fprofile-arcs -ftest-coverage -I ../../include -c $< -o $@
|
|
|
|
.PHONY: all clean check distclean check-build
|
|
all: check-build
|
|
check: check-build
|
|
check-build: $(OBJECTS)
|
|
distclean: clean
|
|
clean:
|
|
rm -rf $(OBJECTS)
|