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)
 (HTM) git clone git://src.adamsgaard.dk/cngf-pf
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 0f275a2bb924a26ee57746c000a1b5d145fdd942
 (DIR) parent d129c822852a9aab2dd9d3fed5245f4d4bb8251a
 (HTM) 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