Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # -*- tab-width: 4 -*- ;; Emacs
- # vi: set noexpandtab :: Vi/ViM
- ############################################################ IDENT(1)
- #
- # $Title: Makefile for compiling AppleScript applet/droplet on Mac OS X $
- # $Copyright: 2019-2022 Devin Teske. All rights reserved. $
- # $FrauBSD$
- #
- ############################################################ CONFIGURATION
- APP = RBuild.app
- SRC = RBuild.applescript
- ############################################################ TARGETS
- all: $(APP)
- $(APP): $(SRC)
- osacompile -o $(@) $(?)
- touch $(@)
- install: $(APP)
- mkdir -p ~/Applications
- cp -R $(?) ~/Applications/
- open: install
- open ~/Applications/$(APP)
- zip: $(APP).zip
- $(APP).zip: $(APP)
- zip -r $(@) $(?)
- test:
- osacompile -o /dev/null $(SRC)
- @echo $(SRC) syntax OK
- clean:
- rm -Rf $(APP)
- distclean cleandir: clean
- rm -f .DS_Store
- ################################################################################
- # END
- ################################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement