- Timestamp:
- May 29, 2006, 9:58:22 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 1 Makefile.config 2 Makefile.version 2 3 .depend 3 4 build
-
- Property svn:ignore
-
trunk/Makefile
r261 r262 2 2 3 3 -include Makefile.config 4 include Makefile.common5 6 4 ifndef CONFIGURE_RUN 7 5 $(error You must run ./configure first) 8 6 endif 7 8 -include Makefile.version 9 include Makefile.common 9 10 10 11 ifneq ($(SYSTEM),Darwin) … … 20 21 all: $(TARGETS) 21 22 22 .lib: 23 .lib: .version 23 24 @echo "* Building libtransmission" 24 25 @$(MAKE) -C libtransmission … … 60 61 else 61 62 62 all: 63 all: .version 63 64 @$(MAKE) -C macosx 64 65 @xcodebuild -alltargets -activeconfiguration | grep -v "^$$" … … 98 99 99 100 endif 101 102 Makefile.version: .version 103 104 .version: 105 @echo "Checking SVN revision..." 106 @./version.sh -
trunk/cli/Makefile
r261 r262 2 2 3 3 include ../Makefile.config 4 include ../Makefile.version 4 5 include ../Makefile.common 5 6 -
trunk/configure
r261 r262 18 18 CXXFLAGS="${CXXFLAGS}" 19 19 LDFLAGS="${LDFLAGS}" 20 21 SVNREV="`echo '$Rev$' | sed 's/[^0-9]*//g'`"22 20 23 21 # … … 292 290 cat > Makefile.config << EOF 293 291 CONFIGURE_RUN = yes 294 SVN_REVISION = $SVNREV295 292 SYSTEM = $SYSTEM 296 293 PREFIX = $PREFIX -
trunk/macosx/Makefile
r261 r262 2 2 3 3 include ../Makefile.config 4 include ../Makefile.version 4 5 include ../Makefile.common 5 6 6 Info.plist: Info.plist.in ../Makefile. common7 Info.plist: Info.plist.in ../Makefile.version ../Makefile.common 7 8 $(RM) $@ 8 9 sed "s/%%VERSION%%/$(VERSION_STRING)/g" < $< > $@
Note: See TracChangeset
for help on using the changeset viewer.