You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
307 B
Makefile
22 lines
307 B
Makefile
.PHONY: all check test test-compile ptest clean
|
|
|
|
all :
|
|
|
|
check : test
|
|
|
|
test-compile:
|
|
|
|
test:
|
|
./db-dump-client-stats.py
|
|
./db-dump-corrupt.py
|
|
./db-dump-print-empty.py
|
|
./db-dump-print-v6-all.py
|
|
./db-dump-print-v6-mqtt-v5-props.py
|
|
./db-dump-stats.py
|
|
./db-dump-stats-current.py
|
|
|
|
ptest:
|
|
./test.py
|
|
|
|
clean :
|