1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 09:13:06 +00:00
transmission/macosx/Makefile
Eric Petit bf7ce0a305 Started to switch to a Makefile-based build system (still very incomplete,
so the Jamfile are still there).
Set a few svn:ignore properties.
2006-03-07 20:23:40 +00:00

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