[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / src / R / r-packages

Diff for /OpenXM/src/R/r-packages/Makefile between version 1.9 and 1.17

version 1.9, 2014/03/27 08:02:06 version 1.17, 2017/04/01 13:06:59
Line 2  RSYNC=rsync -Cavz --safe-links
Line 2  RSYNC=rsync -Cavz --safe-links
   
 usage:  usage:
         @echo "check-hgm, build-hgm"          @echo "check-hgm, build-hgm"
         @echo "rsync, copy-web"          @echo "build-hgmFB"
           @echo "rsync, copy-web, check-hgm-for-cran"
   
 check-hgm: rsync  check-hgm: rsync
         R CMD check hgm          R CMD check hgm
   check-hgm-for-cran: rsync
           R CMD check --as-cran hgm
 build-hgm: rsync  build-hgm: rsync
           rm -f hgm/src/@dont-edit-files
         R CMD build hgm          R CMD build hgm
           touch hgm/src/@dont-edit-files
   
 rsync: rsync-gsl-t-1 rsync-so3 rsync-mh rsync-orthant  rsync: rsync-gsl-t-1 rsync-so3 rsync-mh rsync-orthant rsync-oxprint
 rsync-gsl-t-1:  rsync-gsl-t-1:
         ${RSYNC} ../../hgm/gsl-t-1/src/*.c hgm/src/          ${RSYNC} ../../hgm/gsl-t-1/src/*.c hgm/src/
         ${RSYNC} ../../hgm/gsl-t-1/src/*.h hgm/src/          ${RSYNC} ../../hgm/gsl-t-1/src/*.h hgm/src/
 rsync-so3:  rsync-so3:
         ${RSYNC} ../../hgm/so3/src/*.c hgm/src/          ${RSYNC} ../../hgm/so3/src/*.c hgm/src/
 rsync-mh:  rsync-mh:
         ${RSYNC} --exclude test1.c --exclude test2.c ../../hgm/mh/src/*.c hgm/src/          ${RSYNC} --exclude test1.c --exclude test2.c --exclude genusage.c ../../hgm/mh/src/*.c hgm/src/
         ${RSYNC} ../../hgm/mh/src/*.h hgm/src/          ${RSYNC} ../../hgm/mh/src/*.h hgm/src/
 rsync-orthant:  rsync-orthant:
         ${RSYNC} ../../hgm/orthant/src/hgm_ko_orthant.c hgm/src/          ${RSYNC} ../../hgm/orthant/src/hgm_ko_orthant*.c  hgm/src/
   rsync-oxprint:
           ${RSYNC} ../../hgm/oxprint/oxprint.h  hgm/src/
   
 copy-web: build-hgm  check-hgmFB:
         ${RSYNC} hgm*gz ${USER}@lemon.math.kobe-u.ac.jp:/home/web/OpenXM/Math/hgm          R CMD check hgm_fb
   build-hgmFB:
           R CMD build hgm_fb
   copy-web: copy-web-hgm copy-web-hgmFB
   copy-web-hgm: build-hgm
           ${RSYNC} hgm_*gz ${USER}@lemon.math.kobe-u.ac.jp:/home/web/OpenXM/Math/hgm
           ${RSYNC} hgm.Rcheck/hgm-manual.pdf ${USER}@lemon.math.kobe-u.ac.jp:/home/web/OpenXM/Math/hgm
   
   copy-web-hgmFB: build-hgmFB
           ${RSYNC} hgmFB_*gz ${USER}@lemon.math.kobe-u.ac.jp:/home/web/OpenXM/Math/hgm
           ${RSYNC} hgm_fb.Rcheck/hgmFB-manual.pdf ${USER}@lemon.math.kobe-u.ac.jp:/home/web/OpenXM/Math/hgm
   
   clean:
           rm -f hgm/src/*.o hgm/src/*.so

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.17

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>