Changeset 2591 for trunk/src/kmk/maintMakefile
- Timestamp:
- Jun 17, 2012, 10:45:31 PM (13 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
maintMakefile (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk
- Property svn:ignore
-
old new 13 13 stamp-* 14 14 makebook* 15 15 16 .*gdbinit 17 .gdb_history 18 16 19 *.dep 17 20 *.dvi … … 31 34 *.pg 32 35 *.pgs 36 33 37 README 34 38 README.DOS 35 39 README.W32 40 README.OS2 36 41 aclocal.m4 37 42 autom4te.cache … … 52 57 config.h.W32 53 58 config.h-vms 59 54 60 loadavg 55 61 loadavg.c 56 62 make 63 57 64 .deps 58 65 .dep_segment 66 ID 67 TAGS 68 59 69 _* 60 70 sun4 … … 72 82 sol2 73 83 i486-linux 84 74 85 customs 86 75 87 install-sh 76 88 mkinstalldirs 89 90 .directive.asc
-
- Property svn:ignore
-
trunk/src/kmk/maintMakefile
r2421 r2591 148 148 && (cd "$$tmppo" \ 149 149 && $(WGET) -r -l1 -nd --no-parent -A '*.po' $(po_repo)) \ 150 && cp "$$tmppo"/*.po po && rm -rf "$$tmppo"150 && cp "$$tmppo"/*.po $(top_srcdir)/po && rm -rf "$$tmppo" 151 151 cd po && $(MAKE) update-po 152 152 $(MAKE) po-check 153 153 154 154 po-update: 155 if test -d "po"; then \ 156 $(MAKE) do-po-update; \ 157 fi 155 [ -d "po" ] && $(MAKE) do-po-update 158 156 159 157 # -------------------------- # … … 165 163 # regularly updated from the specified URL. 166 164 167 savannah-url = http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~ 165 cvs-url = http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~ 166 git-url = http://git.savannah.gnu.org/cgit 168 167 target = $(patsubst get-%,%,$@) 169 168 170 config-url = $( savannah-url)/config/config/$(patsubst get-config/%,%,$@)169 config-url = $(git-url)/config.git/plain/$(patsubst get-config/%,%,$@) 171 170 get-config/config.guess get-config/config.sub: 172 171 @echo $(WGET) $(config-url) -O $(target) \ … … 174 173 && $(move_if_change) 175 174 176 gnulib-url = $( savannah-url)/gnulib/gnulib/build-aux/$(patsubst get-config/%,%,$@)175 gnulib-url = $(git-url)/gnulib.git/plain/build-aux/$(patsubst get-config/%,%,$@) 177 176 get-config/texinfo.tex: 178 177 @echo $(WGET) $(gnulib-url) -O $(target) \ … … 180 179 && $(move_if_change) 181 180 182 gnustandards-url = $( savannah-url)/gnustandards/gnustandards/$(patsubst get-doc/%,%,$@)181 gnustandards-url = $(cvs-url)/gnustandards/gnustandards/$(patsubst get-doc/%,%,$@) 183 182 get-doc/make-stds.texi get-doc/fdl.texi: 184 183 @echo $(WGET) $(gnustandards-url) -O $(target) \ … … 186 185 && $(move_if_change) 187 186 188 .PHONY: cvs-update189 cvs-update: get-config/texinfo.tex get-config/config.guess get-config/config.sub get-doc/make-stds.texi get-doc/fdl.texi187 .PHONY: scm-update 188 scm-update: get-config/texinfo.tex get-config/config.guess get-config/config.sub get-doc/make-stds.texi get-doc/fdl.texi 190 189 191 190 … … 195 194 196 195 .PHONY: update 197 update: po-update cvs-update196 update: po-update scm-update 198 197 199 198 … … 209 208 210 209 changelog-check: 211 if head ChangeLog | grep 'Version $(VERSION)' >/dev/null; then \210 if head $(top_srcdir)/ChangeLog | grep 'Version $(VERSION)' >/dev/null; then \ 212 211 :; \ 213 212 else \ … … 251 250 @echo "Creating directive file '$@':" 252 251 @( \ 253 echo 'vers tion: 1.1'; \252 echo 'version: 1.1'; \ 254 253 echo 'directory: make'; \ 255 254 echo 'filename: $*'; \ … … 262 261 263 262 FTPPUT = ncftpput 264 gnu-url = ftp-upload.gnu.org /incoming 263 gnu-upload-host = ftp-upload.gnu.org 264 gnu-upload-dir = /incoming 265 265 266 266 267 UPLOADS = upload-alpha upload-ftp 267 268 .PHONY: $(UPLOADS) 268 269 $(UPLOADS): $(DIST_ARCHIVES) $(DIST_ARCHIVES_SIG) $(DIST_ARCHIVES_DIRECTIVE) 269 $(FTPPUT) "$(gnu-u rl)/$(@:upload-%=%)" $^270 $(FTPPUT) "$(gnu-upload-host)" "$(gnu-upload-dir)/$(@:upload-%=%)" $^ 270 271 271 272 272 273 # Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 273 # 2007 Free Software Foundation, Inc.274 # 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 274 275 # This file is part of GNU Make. 275 276 #
Note:
See TracChangeset
for help on using the changeset viewer.
