From: Oliver Schmidt 
Date: Wed, 1 Jun 2016 18:59:33 +0000 (+0200)
Subject: Removed tab characters.
X-Git-Tag: V2.16~129
X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6fca6897cd600641214c54b6aab6a31bb217322f;p=cc65
Removed tab characters.
The cc65 code base uses tab character only for make recipes.
---
diff --git a/samples/Makefile b/samples/Makefile
index aa869b088..dcae2f575 100644
--- a/samples/Makefile
+++ b/samples/Makefile
@@ -5,7 +5,7 @@
 #
 
 # Enter the target system here
-SYS	= c64
+SYS = c64
 
 # Determine the path to the executables and libraries. If the samples
 # directory is part of a complete source tree, use the stuff from that
@@ -44,7 +44,7 @@ LD   = ../bin/ld65
 endif
 
 # This one comes with VICE
-C1541	= c1541
+C1541 = c1541
 
 # --------------------------------------------------------------------------
 # System-dependent settings
@@ -90,20 +90,20 @@ LDFLAGS_tgidemo_atari = -D __RESERVED_MEMORY__=0x2000
 # List of executables. This list could be made target-dependent by checking
 # $(SYS).
 
-EXELIST	=	ascii		\
-		diodemo		\
-		enumdevdir	\
-		fire		\
-		gunzip65	\
-		hello		\
-		mandelbrot	\
-		mousetest	\
-		multdemo	\
-		nachtm		\
-		ovrldemo	\
-		plasma		\
-		sieve		\
-		tgidemo
+EXELIST = ascii      \
+          diodemo    \
+          enumdevdir \
+          fire       \
+          gunzip65   \
+          hello      \
+          mandelbrot \
+          mousetest  \
+          multdemo   \
+          nachtm     \
+          ovrldemo   \
+          plasma     \
+          sieve      \
+          tgidemo
 
 # --------------------------------------------------------------------------
 # Rules to make the binaries
@@ -111,26 +111,26 @@ EXELIST	=	ascii		\
 .PHONY: all samples
 all:
 
-samples:	$(EXELIST)
+samples: $(EXELIST)
 
 # --------------------------------------------------------------------------
 # Overlay rules. Overlays need special ld65 configuration files.  Also, the
 # overlay file-names are shortenned to fit the Atari's 8.3-character limit.
 
-multdemo:	multidemo.o
+multdemo: multidemo.o
 	@$(LD) -o $@ -C $(SYS)-overlay.cfg -m $@.map $^ $(CLIB)
 
-ovrldemo:	overlaydemo.o
+ovrldemo: overlaydemo.o
 	@$(LD) -o $@ -C $(SYS)-overlay.cfg -m $@.map $^ $(CLIB)
 
 # --------------------------------------------------------------------------
 # Rule to make a CBM disk with all samples. Needs the c1541 program that comes
 # with the VICE emulator.
 
-.PHONY:	d64
-d64:	samples.d64
+.PHONY: d64
+d64: samples.d64
 
-samples.d64:	samples
+samples.d64: samples
 	@$(C1541) -format samples,AA  d64 $@ > /dev/null
 	@for exe in $(EXELIST); do\
 	    $(C1541) -attach $@ -write $$exe > /dev/null || exit $$?;\
@@ -144,7 +144,7 @@ samples.d64:	samples
 
 INSTALL = install
 samplesdir = $(prefix)/share/cc65
-.PHONY:	install
+.PHONY: install
 install:
 	$(if $(prefix),,$(error variable `prefix' must be set))
 	$(INSTALL) -d $(DESTDIR)$(samplesdir)
@@ -159,7 +159,7 @@ install:
 # --------------------------------------------------------------------------
 # Packaging rules
 
-.PHONY:	zip
+.PHONY: zip
 zip:
 	@cd .. && zip -r cc65 samples/
 
@@ -169,11 +169,11 @@ zip:
 .PHONY:	mostlyclean
 mostlyclean:
 
-.PHONY:	clean
+.PHONY: clean
 clean:
 	$(RM) *.map *.o *.s *.lbl
 
-.PHONY:	zap
-zap:	clean
+.PHONY: zap
+zap: clean
 	$(RM) $(EXELIST) samples.d64
 	$(RM) multdemo.? ovrldemo.?