| tfix makefile targets - slidergrid - grid of elastic sliders on a frictional su… | |
| git clone git://src.adamsgaard.dk/slidergrid | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit 1fd2ff5c433e192a246da1919a7346ec6ec3dafc | |
| parent 7db54ba64467af8531138bebce18c069a29222d6 | |
| Author: Anders Damsgaard <[email protected]> | |
| Date: Thu, 14 Apr 2016 12:38:12 -0700 | |
| fix makefile targets | |
| Diffstat: | |
| M tests/elasticity/Makefile | 6 +++--- | |
| 1 file changed, 3 insertions(+), 3 deletions(-) | |
| --- | |
| diff --git a/tests/elasticity/Makefile b/tests/elasticity/Makefile | |
| t@@ -11,14 +11,14 @@ ESSENTIALOBJS=$(SRCFOLDER)/main.o \ | |
| $(SRCFOLDER)/simulation.o | |
| BINS=normal shear | |
| -default: normal-output shear-output | |
| +default: normal-output/normal.E_kin.pdf shear-output/shear.E_kin.pdf | |
| -normal-output: normal | |
| +normal-output/normal.E_kin.pdf: normal | |
| ./$< --verbose | |
| python $(ROOT)postprocessing.py --plot-kinetic-energy $<-output | |
| @#python $(ROOT)postprocessing.py --plot-sliders $<-output | |
| -shear-output: shear | |
| +shear-output/shear.E_kin.pdf: shear | |
| ./$< --verbose | |
| python $(ROOT)postprocessing.py --plot-kinetic-energy $<-output | |
| @#python $(ROOT)postprocessing.py --plot-sliders $<-output |