some more $(RM) vs $(DEL) fixing

This commit is contained in:
mrdudz
2020-10-15 19:34:40 +02:00
parent 6920b8be78
commit b773bb9ded
10 changed files with 30 additions and 30 deletions

View File

@@ -86,8 +86,8 @@ yesno.cvt: yesnores.grc yesno.c
clean:
$(DEL) overlay-demores.h 2>$(NULLDEV)
$(DEL) bitmap.c 2>$(NULLDEV)
$(DEL) *.cvt 2>$(NULLDEV)
$(DEL) *.map 2>$(NULLDEV)
@$(DEL) overlay-demores.h 2>$(NULLDEV)
@$(DEL) bitmap.c 2>$(NULLDEV)
@$(DEL) *.cvt 2>$(NULLDEV)
@$(DEL) *.map 2>$(NULLDEV)
$(foreach dir,$(DIRLIST),$(SUBDIR_recipe))

View File

@@ -47,6 +47,6 @@ vlir.cvt: vlir.grc vlir0.s vlir1.s vlir2.s
# $(CL) -t geos-cbm -o vlir.cvt vlir.grc vlir0.s vlir1.s vlir2.s
clean:
$(DEL) test.s test.h 2>$(NULLDEV)
$(DEL) vlir.s vlir.cvt vlir.c vlir.h 2>$(NULLDEV)
$(DEL) *.o 2>$(NULLDEV)
@$(DEL) test.s test.h 2>$(NULLDEV)
@$(DEL) vlir.s vlir.cvt vlir.c vlir.h 2>$(NULLDEV)
@$(DEL) *.o 2>$(NULLDEV)