Skip to content

Commit

Permalink
Improve Makefile output
Browse files Browse the repository at this point in the history
  • Loading branch information
defagos committed Sep 10, 2018
1 parent 34808cc commit d1538fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
all:
@echo "Building the project..."
@xcodebuild build
@echo ""
@echo "... done.\n"

.PHONY: package
package:
@echo "Packaging binaries..."
@mkdir -p archive
@carthage build --no-skip-current
@carthage archive --output archive
@echo ""
@echo "... done.\n"

.PHONY: clean
clean:
@echo "Cleaning up build products..."
@xcodebuild clean
@rm -rf $(CARTHAGE_FOLDER)
@echo ""
@echo "... done.\n"

.PHONY: help
help:
Expand Down

0 comments on commit d1538fc

Please sign in to comment.