Skip to content

Instantly share code, notes, and snippets.

@HalCanary
Last active July 6, 2024 13:48
Show Gist options
  • Save HalCanary/b626b28f8c92f1127e914c2d07526ac1 to your computer and use it in GitHub Desktop.
Save HalCanary/b626b28f8c92f1127e914c2d07526ac1 to your computer and use it in GitHub Desktop.
Location/Makefile
Location: Location.m Location.info.plist
cc $< \
-framework CoreLocation \
-framework AppKit \
-sectcreate __TEXT __info_plist Location.info.plist \
-o $@
[ "$$CODESIGN_IDENTITY" ] && \
codesign \
-s "${CODESIGN_IDENTITY}" \
--verbose --force \
--options runtime $@
run: Location
./Location
clean:
rm Location
.PHONY: run clean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment