# 
# makefile for MetaData Importer
#

PBXBUILD = /usr/bin/xcodebuild
BUILD_OPTION = -configuration Deployment
BUILD_DIR = build

all:
	sudo xcode-select -switch /Developer-old/
	$(PBXBUILD) $(BUILD_OPTION)
	sudo xcode-select -switch /Developer/

clean:
	$(PBXBUILD) -alltargets clean
	rm -rf $(BUILD_DIR)
