1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-11 20:29:36 +00:00

$(RM) abc -> @$(DEL) abc 2>$(NULLDEV)

This commit is contained in:
mrdudz 2020-10-15 18:53:56 +02:00
parent a0dc7cd9e4
commit 6920b8be78
3 changed files with 10 additions and 10 deletions

View File

@ -53,7 +53,7 @@ image.bin: image.s image.cfg
$(CL) -t none -C image.cfg -o image.bin image.s $(CL) -t none -C image.cfg -o image.bin image.s
clean: clean:
$(RM) $(ASMS) $(DEL) $(ASMS) 2>$(NULLDEV)
$(RM) $(DAIS) $(DEL) $(DAIS) 2>$(NULLDEV)
$(RM) image.bin $(DEL) image.bin 2>$(NULLDEV)

View File

@ -86,8 +86,8 @@ yesno.cvt: yesnores.grc yesno.c
clean: clean:
$(RM) overlay-demores.h $(DEL) overlay-demores.h 2>$(NULLDEV)
$(RM) bitmap.c $(DEL) bitmap.c 2>$(NULLDEV)
$(RM) *.cvt $(DEL) *.cvt 2>$(NULLDEV)
$(RM) *.map $(DEL) *.map 2>$(NULLDEV)
$(foreach dir,$(DIRLIST),$(SUBDIR_recipe)) $(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 # $(CL) -t geos-cbm -o vlir.cvt vlir.grc vlir0.s vlir1.s vlir2.s
clean: clean:
$(RM) test.s test.h $(DEL) test.s test.h 2>$(NULLDEV)
$(RM) vlir.s vlir.cvt vlir.c vlir.h $(DEL) vlir.s vlir.cvt vlir.c vlir.h 2>$(NULLDEV)
$(RM) *.o $(DEL) *.o 2>$(NULLDEV)