# HG changeset patch # User John Tsiombikas # Date 1309121980 -10800 # Node ID 505915b0f3da50b5e68752ede083c923a6516d5d # Parent b5c852d7661eb2ef3093463de486ac8edcd53139 foo diff -r b5c852d7661e -r 505915b0f3da tests/tests-makefile --- a/tests/tests-makefile Sun Jun 26 23:57:53 2011 +0300 +++ b/tests/tests-makefile Sun Jun 26 23:59:40 2011 +0300 @@ -32,10 +32,10 @@ clean: rm -f $(obj) $(bin) -.PHONY: install -install: +.PHONY: app +app: $(bin) mkdir -p Test.app/Contents/MacOS Test.app/Contents/Frameworks - cd Test.app/Contents; ln -s ../../../tests-macinfo.plist Info.plist + cd Test.app/Contents; rm -f Info.plist; ln -s ../../../tests-macinfo.plist Info.plist cp $(bin) Test.app/Contents/MacOS/test - cd Test.app/Contents/Frameworks; ln -s ../../../../../libsgl.dylib . + cd Test.app/Contents/Frameworks; rm -f libsgl.dylib; ln -s ../../../../../libsgl.dylib . install_name_tool -change libsgl.dylib @executable_path/../Frameworks/libsgl.dylib Test.app/Contents/MacOS/test