summaryrefslogtreecommitdiffstats
path: root/util/getpir/Makefile
blob: fffb13872acf442edc6db00141f7bec862a2931b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# change to the path of your linuxbios tree
#LINUXBIOSROOT=/home/rminnich/src//freebios/
LINUXBIOSROOT=../..

INCLUDEPATH=$(LINUXBIOSROOT)/src/arch/i386/include
INCLUDE2=$(LINUXBIOSROOT)/src/include

getpir: getpir.c
	gcc -o getpir -I$(INCLUDEPATH) -I$(INCLUDE2) getpir.c

all: getpir checkpir

checkpir: checkpir.c irq_tables.o
	gcc -o checkpir -I$(INCLUDEPATH) -I$(INCLUDE2) irq_tables.o checkpir.c


irq_tables.o: irq_tables.c  
	gcc -c -I$(INCLUDEPATH) -I$(INCLUDE2) irq_tables.c

clean:
	rm -f irq_tables.o getpir checkpir *~

cleantable:
	rm -f irq_table.o

test:   checkpir
	./checkpir ;\
	exit 0;
OpenPOWER on IntegriCloud