URI: 
       tMakefile - Granular.jl - Julia package for granular dynamics simulation
  HTML git clone git://src.adamsgaard.dk/Granular.jl
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       tMakefile (816B)
       ---
            1 default: test
            2 
            3 .PHONY: test
            4 test: test-julia-1.0 #test-julia-0.6 
            5 
            6 .PHONY: test-julia-0.6
            7 test-julia-0.6:
            8         julia-0.6 --color=yes -e 'Pkg.test("Granular")' \
            9                 && notify-send Granular.jl tests completed successfully on Julia 0.6 \
           10                 || notify-send Granular.jl failed on Julia 0.6
           11 
           12 .PHONY: test-julia-0.7
           13 test-julia-0.7:
           14         julia-0.7 --color=yes -e 'import Pkg; Pkg.test("Granular")' \
           15                 && notify-send Granular.jl tests completed successfully on Julia 0.7 \
           16                 || notify-send Granular.jl failed on Julia 0.7
           17 
           18 .PHONY: test-julia-1.0
           19 test-julia-1.0:
           20         julia-1.0 --color=yes -e 'import Pkg; Pkg.test("Granular")' \
           21                 && notify-send Granular.jl tests completed successfully on Julia 1.0 \
           22                 || notify-send Granular.jl failed on Julia 1.0
           23 
           24 .PHONY: docs
           25 docs:
           26         cd docs && julia --color=yes make.jl
           27         open docs/build/index.html
           28