blob: e995f007ce2cd297d01c605d1f6e64f5387b7480 [file] [log] [blame]
Stefan Reinauer18588442005-01-17 11:08:08 +00001#
2# NOTE: You need to add your libpci.a version to CFLAGS below if
3# pci-userspace.c does not build.
4#
5# If you are building on AMD64, you have to use /usr/lib64/libpci.a instead of
6# /usr/lib/...
7#
8
Li-Ta Lo81521262004-07-08 17:18:27 +00009CC = gcc
Stefan Reinauer86051f92010-03-23 15:53:38 +000010CFLAGS = -Wall -Iinclude -I../../src/devices/oprom/include/ -O2 -g
Li-Ta Lo81521262004-07-08 17:18:27 +000011
Stefan Reinauer86051f92010-03-23 15:53:38 +000012INTOBJS = int10.o int15.o int16.o int1a.o inte6.o
13X86EMUOBJS = sys.o decode.o ops.o ops2.o prim_ops.o fpu.o debug.o
14OBJS = testbios.o helper_exec.o helper_mem.o $(INTOBJS) $(X86EMUOBJS)
Li-Ta Lo81521262004-07-08 17:18:27 +000015
16# user space pci is the only option right now.
Stefan Reinauer86051f92010-03-23 15:53:38 +000017OBJS += pci-userspace.o
18
19LIBS=-lpci
Li-Ta Lo81521262004-07-08 17:18:27 +000020
21all: testbios
22
Stefan Reinauer86051f92010-03-23 15:53:38 +000023testbios: $(OBJS)
24 $(CC) $(CFLAGS) -o $@ $^ $(LIBS)
Li-Ta Lo81521262004-07-08 17:18:27 +000025
26helper_exec.o: helper_exec.c test.h
27
Li-Ta Lo81521262004-07-08 17:18:27 +000028clean:
Li-Ta Lo81521262004-07-08 17:18:27 +000029 rm -f *.o *~ testbios
30
Stefan Reinauer86051f92010-03-23 15:53:38 +000031%.o: ../../src/devices/oprom/x86emu/%.c
32 $(CC) $(CFLAGS) -include stdio.h -c -o $@ $^
33