hello_world: Use Makefile automatic variables
authorAnton Blanchard <anton@linux.ibm.com>
Thu, 16 Apr 2020 07:38:07 +0000 (17:38 +1000)
committerAnton Blanchard <anton@ozlabs.org>
Thu, 16 Apr 2020 07:38:07 +0000 (17:38 +1000)
Fix a few whitespace issues while here.

Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
hello_world/Makefile

index f7f949711dbfbc300d9fbf0fa847432a7966c5c9..674095e6f7bd6100883cb5094e28d32361ef067f 100644 (file)
@@ -1,28 +1,28 @@
 ARCH = $(shell uname -m)
 ifneq ("$(ARCH)", "ppc64")
 ifneq ("$(ARCH)", "ppc64le")
-        CROSS_COMPILE ?= powerpc64le-linux-
-        endif
-        endif
+       CROSS_COMPILE ?= powerpc64le-linux-
+endif
+endif
 
 CC = $(CROSS_COMPILE)gcc
 LD = $(CROSS_COMPILE)ld
 OBJCOPY = $(CROSS_COMPILE)objcopy
 
-CFLAGS = -Os -g -Wall -std=c99 -msoft-float -mno-string -mno-multiple -mno-vsx -mno-altivec -mlittle-endian -fno-stack-protector -mstrict-align -ffreestanding -fdata-sections -ffunction-sections 
+CFLAGS = -Os -g -Wall -std=c99 -msoft-float -mno-string -mno-multiple -mno-vsx -mno-altivec -mlittle-endian -fno-stack-protector -mstrict-align -ffreestanding -fdata-sections -ffunction-sections
 ASFLAGS = $(CFLAGS)
 LDFLAGS = -T powerpc.lds
 
 all: hello_world.hex
 
 hello_world.elf: hello_world.o head.o console.o
-       $(LD) $(LDFLAGS) -o hello_world.elf hello_world.o head.o console.o
+       $(LD) $(LDFLAGS) -o $@ $^
 
 hello_world.bin: hello_world.elf
-       $(OBJCOPY) -O binary hello_world.elf hello_world.bin
+       $(OBJCOPY) -O binary $^ $@
 
 hello_world.hex: hello_world.bin
-       ../scripts/bin2hex.py hello_world.bin > hello_world.hex
+       ../scripts/bin2hex.py $^ > $@
 
 clean:
        @rm -f *.o hello_world.elf hello_world.bin hello_world.hex