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.
30 lines
428 B
Makefile
30 lines
428 B
Makefile
.PHONY: all check test ptest clean
|
|
|
|
all :
|
|
|
|
check : test
|
|
test : 02 03
|
|
./test.sh
|
|
#./test-ws.sh
|
|
|
|
02 :
|
|
./02-subscribe-argv-errors.py
|
|
./02-subscribe-qos1.py
|
|
./02-subscribe-format.py
|
|
./02-subscribe-null.py
|
|
./02-subscribe-verbose.py
|
|
|
|
03 :
|
|
./03-publish-argv-errors.py
|
|
./03-publish-qos0-empty.py
|
|
./03-publish-qos1-properties.py
|
|
./03-publish-qos1.py
|
|
./03-publish-socks.py
|
|
|
|
ptest :
|
|
./test.sh
|
|
#./test-ws.sh
|
|
./test.py
|
|
|
|
clean:
|