root/trunk/Makefile

Revision 3776, 0.6 kB (checked in by timothy, 6 months ago)

Remove the 'Release (Universal)' build configuration, the
Release configuration is now universal. #1186

  • Property svn:eol-style set to native
Line 
1 INSTALL_DIR := $(shell if [[ -d $(HOME)/Applications/Colloquy.app ]]; then echo $(HOME)/Applications; else echo /Applications; fi)
2 BUILD_DIR = build/Release
3 PRODUCT_NAME = Colloquy.app
4
5 CP = ditto --rsrc
6 RM = rm
7 COMMON_XCODE_OPTIONS = -project Colloquy.xcodeproj -target 'Colloquy (Application)'
8
9 all release r:
10         xcodebuild $(COMMON_XCODE_OPTIONS) -configuration Release build
11
12 development dev d:
13         xcodebuild $(COMMON_XCODE_OPTIONS) -configuration Development build
14
15 clean c:
16         xcodebuild -project Colloquy.xcodeproj -alltargets clean
17
18 install i:
19         -$(RM) -rf $(INSTALL_DIR)/$(PRODUCT_NAME)
20         $(CP) $(BUILD_DIR)/$(PRODUCT_NAME) $(INSTALL_DIR)/$(PRODUCT_NAME)
Note: See TracBrowser for help on using the browser.