- Factoring of auto.c
- Implementation of fallback/normal support for the amd solo board - Minor bugfix in romcc git-svn-id: svn://svn.coreboot.org/coreboot/trunk@867 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@@ -7,12 +7,16 @@ PACKAGE:=romcc
|
||||
CC=gcc
|
||||
CPPFLAGS=-DVERSION='"$(VERSION)"' -DRELEASE_DATE='"$(RELEASE_DATE)"'
|
||||
CFLAGS=-O -g -Wall $(CPPFLAGS)
|
||||
CPROF_FLAGS=-pg -fprofile-arcs
|
||||
|
||||
all: romcc test
|
||||
|
||||
romcc: romcc.c Makefile
|
||||
$(CC) $(CFLAGS) -o $@ $<
|
||||
|
||||
romcc_pg: romcc.c Makefile
|
||||
$(CC) $(CFLAGS) $(CPROF_FLAGS) -o $@ $<
|
||||
|
||||
TESTS=\
|
||||
hello_world.c \
|
||||
simple_test.c \
|
||||
@@ -45,6 +49,7 @@ TESTS=\
|
||||
simple_test28.c \
|
||||
simple_test29.c \
|
||||
simple_test30.c \
|
||||
simple_test31.c \
|
||||
raminit_test.c \
|
||||
raminit_test2.c \
|
||||
raminit_test3.c
|
||||
|
Reference in New Issue
Block a user