1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 01:03:01 +00:00

Run xcodebuild from the right directory.

This commit is contained in:
Josh Elsasser 2007-07-19 02:04:52 +00:00
parent 7428b48010
commit f04f6933f6

View file

@ -1,8 +1,8 @@
# Use Xcode do make the actual build # Use Xcode do make the actual build
all: all:
@xcodebuild -alltargets -activeconfiguration | grep -v "^$$" @(cd .. && xcodebuild -alltargets -activeconfiguration | grep -v "^$$")
clean: clean:
@xcodebuild -alltargets -activeconfiguration clean | grep -v "^$$" @(cd .. && xcodebuild -alltargets -activeconfiguration clean | grep -v "^$$")
define PACKAGE_RULE1 define PACKAGE_RULE1
$(RM) tmp "Transmission $(VERSION_PACKAGE)" \ $(RM) tmp "Transmission $(VERSION_PACKAGE)" \