mirror of
https://github.com/transmission/transmission
synced 2024-12-25 09:13:06 +00:00
bf7ce0a305
so the Jamfile are still there). Set a few svn:ignore properties.
14 lines
316 B
Makefile
14 lines
316 B
Makefile
include ../Makefile.config
|
|
include ../Makefile.common
|
|
|
|
SRCS = $(shell ls *.m *.h *.plist)
|
|
|
|
Transmission.app: $(SRCS) Info.plist
|
|
xcodebuild -configuration Debug | grep -v "^$$"
|
|
|
|
Info.plist: Info.plist.in ../Makefile.common
|
|
$(RM) $@
|
|
sed "s/%%VERSION%%/$(VERSION_STRING)/g" < $< > $@
|
|
|
|
clean:
|
|
$(RM) Info.plist build
|