| 123456789101112131415161718 | CFLAGS=`xml2-config --cflags` -I/usr/local/opt/libarchive/include -g -Wall -Wextra -Wshadow -O3 -std=c99LDLIBS=`xml2-config --libs` -larchive -lbinnobjects=comments.o zip.o xmlbuff.oanonymize: $(objects).PHONY: cleanclean:	rm *.otest: anonymize	@./anonymize testFiles/input.docx testFiles/output.docx	@cmp testFiles/input.docx testFiles/output.docx -s ; if [ $$? -eq 0 ] ; then echo "FAILURE: Files should differ after anonymizing!"; exit 1; fi	@./anonymize testFiles/output.docx -d	@cmp testFiles/input.docx testFiles/output.docx -s ; if [ $$? -eq 0 ] ; then echo "OK"; else echo "FAILURE: Files should be the same after de-anonymizing!"; exit 1; fi	@rm testFiles/output.docx testFiles/input.docx.bin testFiles/output.docx.bindefault: anonymize
 |