Skip to content

Commit

Permalink
Merge pull request #191 from jpsim/nn-use-configuration-on-make-clean
Browse files Browse the repository at this point in the history
Add `-configuration` options to `clean` target in `Makefile`
  • Loading branch information
jpsim committed Mar 30, 2016
2 parents 42b70b0 + c4660f9 commit 53904a4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ test: clean bootstrap
clean:
rm -f "$(OUTPUT_PACKAGE)"
rm -rf "$(TEMPORARY_FOLDER)"
$(BUILD_TOOL) $(XCODEFLAGS) clean
$(BUILD_TOOL) $(XCODEFLAGS) -configuration Debug clean
$(BUILD_TOOL) $(XCODEFLAGS) -configuration Release clean
$(BUILD_TOOL) $(XCODEFLAGS) -configuration Test clean

install: package
sudo installer -pkg SourceKitten.pkg -target /
Expand Down

0 comments on commit 53904a4

Please sign in to comment.