1
0
mirror of https://github.com/cc65/cc65.git synced 2024-05-31 22:41:32 +00:00

Cleanup whitespace in Makefile

This commit is contained in:
Wayne Parham 2021-06-07 00:53:15 -05:00
parent 975e43892f
commit 5eafd8115f

View File

@ -334,13 +334,12 @@ ifndef EXELIST_$(SYS)
EXELIST_$(SYS) := ${patsubst %.c,%,$(wildcard *.c)} EXELIST_$(SYS) := ${patsubst %.c,%,$(wildcard *.c)}
endif endif
define SUBDIR_recipe define SUBDIR_recipe
@$(MAKE) -C $(dir) --no-print-directory $@ @$(MAKE) -C $(dir) --no-print-directory $@
endef # SUBDIR_recipe endef # SUBDIR_recipe
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
# Rules to make the binaries and the disk # Rules to make the binaries and the disk
@ -481,5 +480,4 @@ mostlyclean:
clean: mostlyclean clean: mostlyclean
@$(DEL) $(EXELIST_$(SYS)) $(DISK_$(SYS)) 2>$(NULLDEV) @$(DEL) $(EXELIST_$(SYS)) $(DISK_$(SYS)) 2>$(NULLDEV)
@$(DEL) multdemo.? ovrldemo.? 2>$(NULLDEV) @$(DEL) multdemo.? ovrldemo.? 2>$(NULLDEV)
@$(foreach dir,$(DIRLIST),$(SUBDIR_recipe)) $(foreach dir,$(DIRLIST),$(SUBDIR_recipe))