makefile fix, touch *.mod after compilation
This commit is contained in:
parent
044e2e44de
commit
796edf5082
1 changed files with 2 additions and 0 deletions
|
|
@ -14,9 +14,11 @@ test.o : test.f90 ysolve.mod compact.mod
|
||||||
|
|
||||||
ysolve.o ysolve.mod : ysolve.f90 compact.mod
|
ysolve.o ysolve.mod : ysolve.f90 compact.mod
|
||||||
${compiler} -c ${flags} ysolve.f90
|
${compiler} -c ${flags} ysolve.f90
|
||||||
|
touch ysolve.mod
|
||||||
|
|
||||||
Compact.o compact.mod : Compact.f90
|
Compact.o compact.mod : Compact.f90
|
||||||
${compiler} -c ${flags} Compact.f90
|
${compiler} -c ${flags} Compact.f90
|
||||||
|
touch compact.mod
|
||||||
|
|
||||||
test: ex
|
test: ex
|
||||||
sh test.sh
|
sh test.sh
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue