52648623e0
Used command line to remove empty lines at end of file: find . -type f -exec sed -i -e :a -e '/^\n*$/{$d;N;};/\n$/ba' {} \; Change-Id: I816ac9666b6dbb7c7e47843672f0d5cc499766a3 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: http://review.coreboot.org/10446 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
12 lines
270 B
Makefile
12 lines
270 B
Makefile
CC=gcc -g -m32
|
|
INCLUDES=-I. -I../include -I../include/x86
|
|
TARGETS=cbfs-x86-test
|
|
|
|
cbfs-x86-test: cbfs-x86-test.c ../arch/x86/rom_media.c ../libcbfs/ram_media.c ../libcbfs/cbfs.c
|
|
$(CC) -o $@ $^ $(INCLUDES)
|
|
|
|
|
|
all: $(TARGETS)
|
|
|
|
run: all
|
|
for i in $(TARGETS); do ./$$i; done
|