mirror of
https://github.com/transmission/transmission
synced 2025-01-31 03:12:44 +00:00
15 lines
316 B
Makefile
15 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
|