changing install paths

This commit is contained in:
RehabMan
2013-01-07 06:07:19 +00:00
committed by Dean McCrory
parent 70f0123cfc
commit 149c9a3ba6
4 changed files with 15 additions and 4 deletions

View File

@@ -1,3 +1,5 @@
# really just some handy scripts...
all:
xcodebuild -scheme All -configuration Debug
xcodebuild -scheme All -configuration Release
@@ -10,10 +12,15 @@ install:
sudo cp -R ./Build/Products/Debug/VoodooPS2Controller.kext /System/Library/Extensions
sudo touch /System/Library/Extensions
sudo cp ./VoodooPS2Daemon/org.rehabman.voodoo.driver.SynapticsDaemon.plist /Library/LaunchDaemons
sudo cp ./Build/Products/Debug/VoodooPS2Daemon /usr/local/bin
sudo cp ./Build/Products/Debug/VoodooPS2Daemon /usr/bin
install_release:
sudo cp -R ./Build/Products/Release/VoodooPS2Controller.kext /System/Library/Extensions
sudo touch /System/Library/Extensions
sudo cp ./VoodooPS2Daemon/org.rehabman.voodoo.driver.SynapticsDaemon.plist /Library/LaunchDaemons
sudo cp ./Build/Products/Release/VoodooPS2Daemon /usr/local/bin
sudo cp ./Build/Products/Release/VoodooPS2Daemon /usr/bin
install.sh: makefile
make -n install_release >install.sh
chmod +x install.sh