URI: 
       tMakefile: remove program-related object files during `clean` - cngf-pf - continuum model for granular flows with pore-pressure dynamics (renamed from 1d_fd_simple_shear)
  HTML git clone git://src.adamsgaard.dk/cngf-pf
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit f4e8c279fa822c4104b9ddb798a4e06b9f1cdd05
   DIR parent c0ecbde7b32404ef869fa3ca9959cbee18777309
  HTML Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Mon, 16 Aug 2021 15:02:28 +0200
       
       Makefile: remove program-related object files during `clean`
       
       Diffstat:
         M Makefile                            |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/Makefile b/Makefile
       t@@ -89,6 +89,6 @@ test: ${BIN}
                make -C test/
        
        clean:
       -        rm -f ${BIN} ${OBJ} test/*.txt
       +        rm -f ${BIN} ${BIN:=.o} ${OBJ} test/*.txt
        
        .PHONY: all install uninstall test clean dist