Mercurial > mplayer.hg
annotate libdha/Makefile @ 6057:31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
author | arpi |
---|---|
date | Sun, 12 May 2002 02:18:52 +0000 |
parents | 0d9a096cfd46 |
children | 136c061fab12 |
rev | line source |
---|---|
3973 | 1 # makefile |
2 | |
3 include ../config.mak | |
4 | |
5 VERSION = 0.1 | |
6 | |
4167 | 7 ifeq ($(TARGET_OS),CYGWIN) |
8 SHORTNAME = libdha.dll | |
9 else | |
3973 | 10 SHORTNAME = libdha.so |
4167 | 11 endif |
3973 | 12 LIBNAME = libdha-$(VERSION).so |
13 | |
4476 | 14 SRCS=libdha.c mtrr.c pci.c pci_names.c |
3973 | 15 OBJS=$(SRCS:.c=.o) |
16 | |
17 CFLAGS = $(OPTFLAGS) -fPIC -I. -I.. -Wall -W | |
6057
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
18 LIBS = |
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
19 ifeq ($(TARGET_OS),OpenBSD) |
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
20 LIBS += -li386 |
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
21 endif |
3973 | 22 |
23 .SUFFIXES: .c .o | |
24 | |
25 # .PHONY: all clean | |
26 | |
27 .c.o: | |
28 $(CC) -c $(CFLAGS) -o $@ $< | |
29 | |
30 $(LIBNAME): $(OBJS) | |
6057
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
31 $(CC) -shared -o $(LIBNAME) $(OBJS) $(LIBS) |
3973 | 32 ln -sf $(LIBNAME) $(SHORTNAME) |
33 | |
34 all: $(LIBNAME) $(SHORTNAME) | |
35 | |
4106 | 36 pci_names.c: |
37 gzip -d -c oth/pci.db.gz >pci.db | |
4172 | 38 $(AWK) -f pci_db2c.awk pci.db |
4106 | 39 |
3973 | 40 test: |
41 $(CC) test.c -o test $(SHORTNAME) | |
42 | |
43 clean: | |
44 rm -f *.o *.so *~ | |
45 | |
46 distclean: | |
47 rm -f Makefile.bak *.o *.so test *~ .depend | |
4106 | 48 rm -f pci_dev_ids.c pci_ids.h pci_names.c pci_names.h pci_vendors.h pci.db |
3973 | 49 |
50 dep: depend | |
51 | |
52 depend: | |
53 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend | |
54 | |
55 install: | |
4215 | 56 mkdir -p $(prefix)/lib |
57 install -m 755 -s -p $(LIBNAME) $(prefix)/lib/$(LIBNAME) | |
4030 | 58 rm -f $(prefix)/lib/libdha.so |
6057
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
59 ln -sf $(LIBNAME) $(prefix)/lib/$(SHORTNAME) |
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
60 ifeq ($(TARGET_OS),OpenBSD) |
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
61 ldconfig -R |
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
62 else |
3973 | 63 ldconfig |
6057
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
64 endif |
3973 | 65 |
66 # | |
67 # include dependency files if they exist | |
68 # | |
69 ifneq ($(wildcard .depend),) | |
70 include .depend | |
71 endif |