diff options
author | Teddy Wing | 2018-10-24 02:12:14 +0200 |
---|---|---|
committer | Teddy Wing | 2018-10-24 02:12:14 +0200 |
commit | fbbe3f7e2fb506eb4097125d33608a54b4d7711e (patch) | |
tree | 55f9d815fea09bdc5a7cfb1f0d8c627d85acb351 /Makefile | |
parent | bbe8d9e851bffcb531395121f22f16c2a85a7564 (diff) | |
download | DomeKey-fbbe3f7e2fb506eb4097125d33608a54b4d7711e.tar.bz2 |
Makefile: Add a `clean` target
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -21,6 +21,10 @@ $(DEBUG_PRODUCT): $(SOURCE_FILES) $(RUST_LIB) $(RUST_LIB): $(RUST_SOURCE_FILES) $(MAKE) -C $(RUST_DIR) $(RUST_LOCAL_LIB) +.PHONY: clean +clean: + xcodebuild -scheme DomeKey -configuration Debug clean + .PHONY: run run: build $(DEBUG_PRODUCT) --daemon |