Various cosmetic fixes (trivial).

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@200 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Uwe Hermann 2007-03-06 05:08:31 +00:00
commit 54bfbf97e5
7 changed files with 24 additions and 20 deletions

View file

@ -28,8 +28,8 @@ SUBLEVEL = 0
have_dotconfig := $(wildcard .config)
have_dotxcompile := $(wildcard .xcompile)
src:=$(shell pwd)
obj:=$(shell pwd)/build
src := $(shell pwd)
obj := $(shell pwd)/build
export src obj
# Do not print "Entering directory ...".
@ -97,6 +97,7 @@ include device/Makefile
include console/Makefile
include mainboard/$(MAINBOARDDIR)/Makefile
include arch/$(ARCH)/Makefile
endif
include util/Makefile
@ -126,7 +127,7 @@ distclean: clean
%.o: %.c
$(Q)echo "Compiling $<"
$(Q)$(CC) $(CFLAGS) -o $@ -c $<
$(Q)$(CC) $(CFLAGS) -o $@ -c $<
.PHONY: doc