diff --git a/Makefile b/Makefile index 0002590..7b02803 100644 --- a/Makefile +++ b/Makefile @@ -26,6 +26,12 @@ $(BIN)/pw-test: $(call mklib, main.c) $(PATHS): mkdir -p $@ +.PHONY: run +run: + command $(BIN)/pw-test + +.PHONY: test +test: clean all run .PHONY: clean clean: - rm -rf $(PATHS) + rm -rf $(BUILD) $(BIN) compile_commands.json