Changeset 2596 for vendor/gnumake/current/maintMakefile
- Timestamp:
- Jun 20, 2012, 12:44:52 AM (13 years ago)
- Location:
- vendor/gnumake/current
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/gnumake/current
- Property svn:ignore deleted
-
vendor/gnumake/current/maintMakefile
r1989 r2596 144 144 && (cd "$$tmppo" \ 145 145 && $(WGET) -r -l1 -nd --no-parent -A '*.po' $(po_repo)) \ 146 && cp "$$tmppo"/*.po po && rm -rf "$$tmppo"146 && cp "$$tmppo"/*.po $(top_srcdir)/po && rm -rf "$$tmppo" 147 147 cd po && $(MAKE) update-po 148 148 $(MAKE) po-check 149 149 150 150 po-update: 151 if test -d "po"; then \ 152 $(MAKE) do-po-update; \ 153 fi 151 [ -d "po" ] && $(MAKE) do-po-update 154 152 155 153 # -------------------------- # … … 161 159 # regularly updated from the specified URL. 162 160 163 savannah-url = http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~ 161 cvs-url = http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~ 162 git-url = http://git.savannah.gnu.org/cgit 164 163 target = $(patsubst get-%,%,$@) 165 164 166 config-url = $( savannah-url)/config/config/$(patsubst get-config/%,%,$@)165 config-url = $(git-url)/config.git/plain/$(patsubst get-config/%,%,$@) 167 166 get-config/config.guess get-config/config.sub: 168 167 @echo $(WGET) $(config-url) -O $(target) \ … … 170 169 && $(move_if_change) 171 170 172 gnulib-url = $( savannah-url)/gnulib/gnulib/build-aux/$(patsubst get-config/%,%,$@)171 gnulib-url = $(git-url)/gnulib.git/plain/build-aux/$(patsubst get-config/%,%,$@) 173 172 get-config/texinfo.tex: 174 173 @echo $(WGET) $(gnulib-url) -O $(target) \ … … 176 175 && $(move_if_change) 177 176 178 gnustandards-url = $( savannah-url)/gnustandards/gnustandards/$(patsubst get-doc/%,%,$@)177 gnustandards-url = $(cvs-url)/gnustandards/gnustandards/$(patsubst get-doc/%,%,$@) 179 178 get-doc/make-stds.texi get-doc/fdl.texi: 180 179 @echo $(WGET) $(gnustandards-url) -O $(target) \ … … 182 181 && $(move_if_change) 183 182 184 .PHONY: cvs-update185 cvs-update: get-config/texinfo.tex get-config/config.guess get-config/config.sub get-doc/make-stds.texi get-doc/fdl.texi183 .PHONY: scm-update 184 scm-update: get-config/texinfo.tex get-config/config.guess get-config/config.sub get-doc/make-stds.texi get-doc/fdl.texi 186 185 187 186 … … 191 190 192 191 .PHONY: update 193 update: po-update cvs-update192 update: po-update scm-update 194 193 195 194 … … 205 204 206 205 changelog-check: 207 if head ChangeLog | grep 'Version $(VERSION)' >/dev/null; then \206 if head $(top_srcdir)/ChangeLog | grep 'Version $(VERSION)' >/dev/null; then \ 208 207 :; \ 209 208 else \ … … 247 246 @echo "Creating directive file '$@':" 248 247 @( \ 249 echo 'vers tion: 1.1'; \248 echo 'version: 1.1'; \ 250 249 echo 'directory: make'; \ 251 250 echo 'filename: $*'; \ … … 258 257 259 258 FTPPUT = ncftpput 260 gnu-url = ftp-upload.gnu.org /incoming 259 gnu-upload-host = ftp-upload.gnu.org 260 gnu-upload-dir = /incoming 261 261 262 262 263 UPLOADS = upload-alpha upload-ftp 263 264 .PHONY: $(UPLOADS) 264 265 $(UPLOADS): $(DIST_ARCHIVES) $(DIST_ARCHIVES_SIG) $(DIST_ARCHIVES_DIRECTIVE) 265 $(FTPPUT) "$(gnu-u rl)/$(@:upload-%=%)" $^266 $(FTPPUT) "$(gnu-upload-host)" "$(gnu-upload-dir)/$(@:upload-%=%)" $^ 266 267 267 268 268 269 # Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 269 # 2007 Free Software Foundation, Inc.270 # 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 270 271 # This file is part of GNU Make. 271 272 #
Note:
See TracChangeset
for help on using the changeset viewer.