diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2016-10-13 17:56:39 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2016-10-13 17:56:39 +0200 |
commit | fcb3332b7b186639cce940696057a2b6dd2c5cca (patch) | |
tree | f328050848f8edf80a72caa1c2726fc0b2d63c1a /GNUmakefile | |
parent | 1b4a184964acfa9bd1054dc31b6e498ef5688c0d (diff) |
Clean up makefile a bit
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/GNUmakefile b/GNUmakefile index 56434be..d8eaa44 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -9,32 +9,6 @@ TGZ := $(PKGNAME)_$(PKGVERS).tar.gz # containing the first instance of R on the PATH. RBIN ?= $(shell dirname "`which R`") -.PHONY: help - -help: - @echo "\nExecute development tasks for $(PKGNAME)\n" - @echo "Usage: \`make <task>\` where <task> is one of:" - @echo "" - @echo "Development Tasks" - @echo "-----------------" - @echo " build Create the package" - @echo " build-no-vignettes Create the package without rebuilding vignettes" - @echo " install Invoke build and then install the result" - @echo " install-no-vignettes Invoke build without rebuilding vignettes and then install the result" - @echo " check Invoke build and then check the package" - @echo " check-no-vignettes Invoke build without rebuilding vignettes, and then check" - @echo " sd Build static documentation" - @echo " winbuilder Upload the build to winbuilder" - @echo "" - @echo "Using R in: $(RBIN)" - @echo "Set the RBIN environment variable to change this." - @echo "" - - -#------------------------------------------------------------------------------ -# Development Tasks -#------------------------------------------------------------------------------ - build: "$(RBIN)/R" CMD build . |