aboutsummaryrefslogtreecommitdiff
path: root/tools/EventClients/Clients/OSXRemote/Makefile.in
blob: 0071c64db8e23bcacfd4b1075f7536170731b007 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#convenience makefile to allow headless osx build

DEBUG_FLAGS=@DEBUG_FLAGS@

#check for debug build
ifneq (,$(findstring _DEBUG, $(DEBUG_FLAGS)))
  CONFIGURATION=Debug
else
  CONFIGURATION=Release
endif

all: 
	xcodebuild -nodistribute -sdk macosx10.4 -configuration $(CONFIGURATION)

clean:
	xcodebuild clean -configuration $(CONFIGURATION)

.PHONY: all clean