tMakefile: fix deps for granular - granular - granular dynamics simulation
 (HTM) git clone git://src.adamsgaard.dk/granular
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit eaad1100200c4187905bcab135b121fa10b9d75e
 (DIR) parent a2face6a7e2d9f90a9aab186848b4c964effad27
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Thu, 18 Mar 2021 00:23:19 +0100
       
       Makefile: fix deps for granular
       
       Diffstat:
         M Makefile                            |      13 ++-----------
       
       1 file changed, 2 insertions(+), 11 deletions(-)
       ---
 (DIR) diff --git a/Makefile b/Makefile
       t@@ -12,6 +12,7 @@ BIN = \
                granular
        SRC = ${BIN:=.c} arrays.c grain.c simulation.c
        HDR = \
       +        arg.h\
                arrays.h\
                grain.h\
                simulation.h\
       t@@ -43,21 +44,11 @@ ${OBJ}: ${HDR}
        .c.o:
                ${CC} ${CNGFPFCFLAGS} ${CNGFPFCPPFLAGS} -o $@ -c $<
        
       -cngf-pf: cngf-pf.o arrays.o fluid.o simulation.o
       +granular: granular.o arrays.o grain.o simulation.o
                ${CC}\
                        cngf-pf.o arrays.o fluid.o simulation.o\
                        -o $@ ${CNGFPFLDFLAGS}
        
       -max_depth_simple_shear: max_depth_simple_shear.o arrays.o fluid.o simulation.o
       -        ${CC}\
       -                max_depth_simple_shear.o arrays.o fluid.o simulation.o\
       -                -o $@ ${CNGFPFLDFLAGS}
       -
       -shear_flux: shear_flux.o
       -        ${CC}\
       -                shear_flux.o\
       -                -o $@ ${CNGFPFLDFLAGS}
       -
        dist:
                rm -rf "${NAME}-${VERSION}"
                mkdir -p "${NAME}-${VERSION}"