default:helpPATCH= applyHarness.patchCONTRACTS_DIR= ../contractsMUNGED_DIR= mungedhelp:@echo"usage:"@echo" make clean: remove all generated files (those ignored by git)"@echo" make $(MUNGED_DIR): create $(MUNGED_DIR) directory by applying the patch file to $(CONTRACTS_DIR)"@echo" make record: record a new patch file capturing the differences between $(CONTRACTS_DIR) and $(MUNGED_DIR)"munged:$(wildcard $(CONTRACTS_DIR)/*.sol) $(PATCH)rm-rf$@cp-r$(CONTRACTS_DIR)$@ patch -p0-d$@ < $(PATCH)record: diff -ruN$(CONTRACTS_DIR)$(MUNGED_DIR) | sed's+../contracts/++g' | sed's+munged/++g'>$(PATCH)clean: git clean -fdXtouch$(PATCH)