46d65e85a1
I'm guessing nobody has tried compiling it with 64bit userspace? Patch makes it compile cleanly and stops a "SEGV instead of working" issue. I also added a few checks for errors on system calls. Signed-off-by: Jeremy Jackson <jerj@coplanar.net> Reworked and Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2602 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
25 lines
358 B
Makefile
25 lines
358 B
Makefile
#
|
|
#
|
|
#
|
|
|
|
CC=gcc
|
|
CFLAGS=-O2 -D_GNU_SOURCE -DGETPIR -Wall
|
|
|
|
all: getpir checkpir
|
|
./checkpir
|
|
|
|
getpir: getpir.o checksum.o code_gen.o
|
|
$(CC) $(CFLAGS) -o getpir $^
|
|
|
|
checkpir: checkpir.c checksum.o irq_tables.o
|
|
$(CC) $(CFLAGS) -o checkpir $^
|
|
|
|
irq_tables.c: getpir
|
|
./getpir
|
|
|
|
clean:
|
|
rm -f getpir checkpir *.o *~
|
|
|
|
distclean: clean
|
|
rm -f irq_tables.o irq_tables.c
|
|
|