Skip to content

Instantly share code, notes, and snippets.

View tschob's full-sized avatar

Hans Seiffert tschob

View GitHub Profile
@tschob
tschob / Makefile
Last active November 7, 2021 15:05
Example Makefile for the usage as enviroment setup script for iOS projects.
.PHONY: help
help:
@echo "You can specify one of the following commands:\n"
@echo "- bootstrap: Sets up all developer tools and calls \`make workspace\`"
@echo "- workspace: Prepares the workspace by generating the projects with XcodeGen and installing Pods"
@echo "- dev-tools: Sets up all developer tools (Homebrew, Gems, ...)"
@echo "- translations: Downloads the translations and generates constants for them"
@echo "- pod-install: Installs the Pods"
@echo "- clean-all: Deletes all dependencies and calls \`make clean-workspace\`"
@echo "- clean-workspace: Deletes the Pod dependencies\n"