Build ocamlmsg if it isn't already built

This commit is contained in:
Tony Garnock-Jones 2012-05-01 16:11:33 -04:00
parent 83da5ad0f1
commit 3dcdf4308f
1 changed files with 5 additions and 2 deletions

View File

@ -5,15 +5,18 @@ SERVER_WEB=web
RELEASE_RESOURCES=build/Release/Ocamlmsg.app/Contents/Resources
DEBUG_RESOURCES=build/Debug/Ocamlmsg.app/Contents/Resources
release:
release: $(SERVER_PATH)/$(SERVER_BINARY)
xcodebuild -configuration Release
cp $(SERVER_PATH)/$(SERVER_BINARY) $(RELEASE_RESOURCES)/.
cp -rp $(SERVER_PATH)/$(SERVER_WEB) $(RELEASE_RESOURCES)/.
debug:
debug: $(SERVER_PATH)/$(SERVER_BINARY)
xcodebuild -configuration Debug
ln -sf $(CURDIR)/$(SERVER_PATH)/$(SERVER_BINARY) $(DEBUG_RESOURCES)/
ln -sf $(CURDIR)/$(SERVER_PATH)/$(SERVER_WEB) $(DEBUG_RESOURCES)/
$(SERVER_PATH)/$(SERVER_BINARY):
make -C $(SERVER_PATH)
clean:
rm -rf build