aboutsummaryrefslogblamecommitdiff
path: root/GNUmakefile
blob: 96bbac21cee7618c4df574cd4f945b5897993fa7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12


                                                                   

                                                               






                                                                              



                                                                                
 
                 

                        





                                   
                            


                                                
                                   
                                  
                                  
               
 
          
 


                                                                                 
 


                                                                 
                   


                                               
                      
               






                                                                      
 
              
                                      
 
                                        
                                         

            
                                                         

                                      
                           
                                                                                             

                           
                      
                                   
 
                          
                  
                                            
 

                                           
 




                                                                


                                                                   
                                               
                                                               
                                                                                                                                  
 
                 
            




                                                                           
       
                                                                  
                                                     
                                                 
                                                           
                                                                                                                                              
PKGNAME := $(shell sed -n "s/Package: *\([^ ]*\)/\1/p" DESCRIPTION)
PKGVERS := $(shell sed -n "s/Version: *\([^ ]*\)/\1/p" DESCRIPTION)
PKGSRC  := $(shell basename $(PWD))
TGZ     := ../$(PKGSRC)_$(PKGVERS).tar.gz
TGZVNR  := ../$(PKGSRC)_$(PKGVERS)-vignettes-not-rebuilt.tar.gz

# Specify the directory holding R binaries. To use an alternate R build (say a
# pre-prelease version) use `make RBIN=/path/to/other/R/` or `export RBIN=...`
# If no alternate bin folder is specified, the default is to use the folder
# containing the first instance of R on the PATH.
RBIN ?= $(shell dirname "`which R`")

# Specify package and static documentation directories for subversion on r-forge
RFSVN ?= $(HOME)/svn/kinfit.r-forge
RFDIR ?= $(RFSVN)/pkg/mkin
SDDIR ?= $(RFSVN)/www/mkin_static

pkgfiles = NEWS \
	   data/* \
	   DESCRIPTION \
	   inst/staticdocs/README \
	   man/* \
	   NAMESPACE \
	   R/* \
	   README.md \
	   tests/* \
	   tests/testthat* \
		 vignettes/header.tex \
		 vignettes/mkin_vignettes.css* \
		 vignettes/*.Rnw \
		 vignettes/*.html \
		 vignettes/*.Rmd \
		 vignettes/*.pdf \
	   TODO

all: build

# convert markdown to R's NEWS format (from knitr package)
NEWS: NEWS.md
	sed -e 's/^-/ -/' -e 's/^## *//' -e 's/^#/\t\t/' <NEWS.md | fmt -80 >NEWS

README.md: README.Rmd
	"$(RBIN)/Rscript" -e 'require(knitr); knit("README.Rmd")'

$(TGZ): $(pkgfiles)
	cd ..;\
		"$(RBIN)/R" CMD build $(PKGSRC)

$(TGZVNR): $(pkgfiles)
	cd ..;\
		"$(RBIN)/R" CMD build $(PKGSRC) --no-build-vignettes;\
		cd $(PKGSRC);\
	mv $(TGZ) $(TGZVNR)
                
build: $(TGZ)

build-no-vignettes: $(TGZVNR)

install: build
	"$(RBIN)/R" CMD INSTALL $(TGZ)

install-no-vignettes: build-no-vignettes
	"$(RBIN)/R" CMD INSTALL $(TGZVNR)

check: build
	"$(RBIN)/R" CMD check --as-cran --no-tests $(TGZ)

check-no-vignettes: build-no-vignettes
	mv $(TGZVNR) $(TGZ)
	"$(RBIN)/R" CMD check --as-cran --no-tests --no-build-vignettes --no-vignettes $(TGZ)
	mv $(TGZ) $(TGZVNR)

clean: clean-vignettes
	$(RM) -r $(PKGNAME).Rcheck/

test: install-no-vignettes
	cd tests;\
		"$(RBIN)/Rscript" testthat.R

vignettes: install-no-vignettes vignettes/*
	$(MAKE) -C vignettes

sd:
	"$(RBIN)/Rscript" -e "library(staticdocs); build_site()"

move-sd:
	rm -rf $(SDDIR)/*;\
	cp -r inst/web/* $(SDDIR); cd $(SDDIR) && svn add --force .

r-forge: sd move-sd
	git archive master > $(HOME)/mkin.tar;\
	cd $(RFDIR) && rm -r `ls` && tar -xf $(HOME)/mkin.tar;\
	svn add --force .; svn rm --force `svn status | grep "\!" | cut -d " " -f 8`; cd $(RFSVN) && svn commit -m 'sync with git'

winbuilder: build
	date
	@echo "Uploading to R-release on win-builder"
	curl -T $(TGZ) ftp://anonymous@win-builder.r-project.org/R-release/
	@echo "Uploading to R-devel on win-builder"
	curl -T $(TGZ) ftp://anonymous@win-builder.r-project.org/R-devel/

submit:
	@echo "\nHow about make test, make check, make winbuilder"
	@echo "\nIs the DESCRIPTION file up to date?"
	@echo "\nIs the NEWS.md file up to date?"
	@echo "\nAre you sure you want to release to CRAN?"
	@echo "\nThen make r-forge, commit leftover changes if any, tag the release and use the form at http://cran.r-project.org/submit.html"

Contact - Imprint