Rev 2927 | Rev 4337 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1301 | jermar | 1 | # Makefile for The PCI Library |
| 2 | # (c) 1999 Martin Mares <mj@ucw.cz> |
||
| 3 | |||
| 4 | # Modified and ported to HelenOS by Jakub Jermar |
||
| 5 | |||
| 2479 | jermar | 6 | LIBC_PREFIX=$(shell cd ../../../lib/libc; pwd) |
| 1301 | jermar | 7 | |
| 3690 | svoboda | 8 | include ../../../Makefile.config |
| 1301 | jermar | 9 | include $(LIBC_PREFIX)/Makefile.toolchain |
| 10 | |||
| 11 | LIBS = $(LIBC_PREFIX)/libc.a |
||
| 12 | CFLAGS += -I$(LIBC_PREFIX)/include -trigraphs |
||
| 13 | |||
| 14 | OBJS=access.o generic.o names.o |
||
| 15 | INCL=internal.h pci.h header.h sysdep.h types.h pci_ids.h |
||
| 16 | |||
| 17 | PCILIB=libpci.a |
||
| 18 | |||
| 19 | OBJS += i386-ports.o |
||
| 20 | |||
| 21 | all: $(PCILIB) |
||
| 22 | |||
| 23 | $(PCILIB): $(OBJS) |
||
| 24 | $(AR) rc $@ $(OBJS) |
||
| 25 | |||
| 26 | %.o: %.c $(INCL) |
||
| 27 | $(CC) $(CFLAGS) -c $< -o $@ |
||
| 28 | |||
| 29 | clean: |
||
| 30 | -rm *.o libpci.a |