Makefile
changeset 287 d01045b55e04
parent 276 66db1bbebe45
child 308 7a5f4265a581
equal deleted inserted replaced
286:f7fe5e055e97 287:d01045b55e04
    15 #   DESTDIR     Prefix to 'prefix' variable value.
    15 #   DESTDIR     Prefix to 'prefix' variable value.
    16 
    16 
    17 ################################################################
    17 ################################################################
    18 # Standard GNU Makefile settings.
    18 # Standard GNU Makefile settings.
    19 
    19 
    20 SHELL = /bin/sh
    20 SHELL = /bin/bash
    21 export PATH := /bin:/usr/bin:${PATH}
    21 export PATH := /bin:/usr/bin:${PATH}
    22 
    22 
    23 # Disable built in pattern rules.
    23 # Disable built in pattern rules.
    24 MAKEFLAGS += -r
    24 MAKEFLAGS += -r
    25 # Disable built in variables.
    25 # Disable built in variables.
   185 echo 'quit'; \
   185 echo 'quit'; \
   186 ) | sftp -b - $(SF_USER),$(pkgname)@web.sourceforge.net
   186 ) | sftp -b - $(SF_USER),$(pkgname)@web.sourceforge.net
   187 
   187 
   188 .PHONY: deploy2sf-release
   188 .PHONY: deploy2sf-release
   189 deploy2sf-release: deploy-check $(DIST_TARBALLS) $(DISTSRC_TARBALLS)
   189 deploy2sf-release: deploy-check $(DIST_TARBALLS) $(DISTSRC_TARBALLS)
   190 	( echo 'cd /home/frs/project/g/ga/gadict'; \
   190 	( echo 'cd /home/frs/project/$(shell v=$(pkgname); echo $${v:0:1}/$${v:0:2})/$(pkgname)'; \
   191 echo "put  README.rst"; \
   191 echo "put  README.rst"; \
   192 echo "chmod 644 README.rst"; \
   192 echo "chmod 644 README.rst"; \
   193 echo "mkdir v$(vmajor).$(vminor)"; \
   193 echo "mkdir v$(vmajor).$(vminor)"; \
   194 echo "cd v$(vmajor).$(vminor)"; \
   194 echo "cd v$(vmajor).$(vminor)"; \
   195 for f in $(DIST_TARBALLS) $(DISTSRC_TARBALLS); do \
   195 for f in $(DIST_TARBALLS) $(DISTSRC_TARBALLS); do \