mirror of
https://github.com/cc65/cc65.git
synced 2024-12-27 00:29:31 +00:00
$(RM) abc -> @$(DEL) abc 2>$(NULLDEV)
This commit is contained in:
parent
a0dc7cd9e4
commit
6920b8be78
@ -53,7 +53,7 @@ image.bin: image.s image.cfg
|
||||
$(CL) -t none -C image.cfg -o image.bin image.s
|
||||
|
||||
clean:
|
||||
$(RM) $(ASMS)
|
||||
$(RM) $(DAIS)
|
||||
$(RM) image.bin
|
||||
$(DEL) $(ASMS) 2>$(NULLDEV)
|
||||
$(DEL) $(DAIS) 2>$(NULLDEV)
|
||||
$(DEL) image.bin 2>$(NULLDEV)
|
||||
|
||||
|
@ -86,8 +86,8 @@ yesno.cvt: yesnores.grc yesno.c
|
||||
|
||||
|
||||
clean:
|
||||
$(RM) overlay-demores.h
|
||||
$(RM) bitmap.c
|
||||
$(RM) *.cvt
|
||||
$(RM) *.map
|
||||
$(DEL) overlay-demores.h 2>$(NULLDEV)
|
||||
$(DEL) bitmap.c 2>$(NULLDEV)
|
||||
$(DEL) *.cvt 2>$(NULLDEV)
|
||||
$(DEL) *.map 2>$(NULLDEV)
|
||||
$(foreach dir,$(DIRLIST),$(SUBDIR_recipe))
|
||||
|
@ -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:
|
||||
$(RM) test.s test.h
|
||||
$(RM) vlir.s vlir.cvt vlir.c vlir.h
|
||||
$(RM) *.o
|
||||
$(DEL) test.s test.h 2>$(NULLDEV)
|
||||
$(DEL) vlir.s vlir.cvt vlir.c vlir.h 2>$(NULLDEV)
|
||||
$(DEL) *.o 2>$(NULLDEV)
|
||||
|
Loading…
Reference in New Issue
Block a user