From 05f26fcb571340b17beaca16939a025a9c0b4cdd Mon Sep 17 00:00:00 2001 From: Eric Biederman Date: Wed, 11 Jun 2003 21:55:00 +0000 Subject: - 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 --- util/romcc/Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'util/romcc/Makefile') diff --git a/util/romcc/Makefile b/util/romcc/Makefile index ad209a5247..d2d4e7dcb9 100644 --- a/util/romcc/Makefile +++ b/util/romcc/Makefile @@ -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 -- cgit v1.2.3