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.
mosquitto/fuzzing/Makefile

19 lines
460 B
Makefile

.PHONY: all clean
all:
./generate_packet_corpora.py
zip -r corpora/db_dump_seed_corpus.zip ../test/apps/db_dump/data/
$(MAKE) -C apps $@
$(MAKE) -C broker $@
$(MAKE) -C lib $@
$(MAKE) -C plugins $@
clean:
-rm -rf corpora/broker corpora/client
-rm -f corpora/broker_packet_seed_corpus.zip corpora/client_packet_seed_corpus.zip
-rm -f corpora/db_dump_seed_corpus.zip
$(MAKE) -C apps $@
$(MAKE) -C broker $@
$(MAKE) -C lib $@
$(MAKE) -C plugins $@