summaryrefslogtreecommitdiffstats
path: root/isys/pci/Makefile
blob: 5940d34647cad937d10bc79ebf34c1ef965d5597 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS = -Wall -g
LOADLIBES = -lpci
LDFLAGS = -g

all: testprobe

libpciprobe.a: libpciprobe.a(pciprobe.o)

testprobe: libpciprobe.a pciprobe.c
	$(CC) $(CFLAGS) $(LDFLAGS) -DTESTING pciprobe.c -o testprobe $(LOADLIBES)

clean:
	rm -f *.o testprobe *.a core