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

Corrected cleanup semantics.

There's no zap goal in cc65 Makefiles.
This commit is contained in:
Oliver Schmidt 2016-06-01 22:50:42 +02:00
parent b75e36bba1
commit 506e44fb5d

View File

@ -81,7 +81,7 @@ LDFLAGS_tgidemo_atari = -D __RESERVED_MEMORY__=0x2000
# --------------------------------------------------------------------------
# Generic rules
.PHONY: all mostlyclean clean install zip samples d64 zap
.PHONY: all mostlyclean clean install zip samples d64
%: %.c
%: %.s
@ -178,10 +178,8 @@ zip:
# Clean-up rules
mostlyclean:
clean:
@$(DEL) *.map *.o *.s *.lbl 2>$(NULLDEV)
zap: clean
clean: mostlyclean
@$(DEL) $(EXELIST) samples.d64 2>$(NULLDEV)
@$(DEL) multdemo.? ovrldemo.? 2>$(NULLDEV)