11 lines
124 B
Makefile
11 lines
124 B
Makefile
|
|
TARGET = tests
|
|
all: $(TARGET)
|
|
|
|
tests:
|
|
cd test && make tests
|
|
|
|
clean::
|
|
rm -f test/*~ test/t/*~
|
|
rm -rf test/composure_test
|