Mercurial > mplayer.hg
annotate libdha/Makefile @ 15293:c64718e7fadd
Replace duplicate and wrong -sws parameter description with a pointer.
author | diego |
---|---|
date | Fri, 29 Apr 2005 15:56:42 +0000 |
parents | f4b8d6abce22 |
children | 4c86d2479aa2 |
rev | line source |
---|---|
3973 | 1 # makefile |
2 | |
3 include ../config.mak | |
4 | |
12692
797e602bf1dd
make the awk script working for localized machines too, patch by Onur Kucuk
alex
parents:
12069
diff
changeset
|
5 MAJOR_VERSION = 1 |
797e602bf1dd
make the awk script working for localized machines too, patch by Onur Kucuk
alex
parents:
12069
diff
changeset
|
6 MINOR_VERSION = 0 |
7811
aa0536d98278
change versioning of libdha, patch from Guillem Jover <guillem.jover@menta.net>
eyck
parents:
7073
diff
changeset
|
7 VERSION = $(MAJOR_VERSION).$(MINOR_VERSION) |
aa0536d98278
change versioning of libdha, patch from Guillem Jover <guillem.jover@menta.net>
eyck
parents:
7073
diff
changeset
|
8 |
3973 | 9 |
4167 | 10 ifeq ($(TARGET_OS),CYGWIN) |
11 SHORTNAME = libdha.dll | |
12 else | |
7811
aa0536d98278
change versioning of libdha, patch from Guillem Jover <guillem.jover@menta.net>
eyck
parents:
7073
diff
changeset
|
13 SHORTNAME = libdha.so.$(MAJOR_VERSION) |
aa0536d98278
change versioning of libdha, patch from Guillem Jover <guillem.jover@menta.net>
eyck
parents:
7073
diff
changeset
|
14 SONAME_FLAGS = -Wl,-soname,$(SHORTNAME) |
7824
ef5f2f54c231
really fix latest fix. But now this versioning stopped making sense to me.
eyck
parents:
7812
diff
changeset
|
15 #SHORTNAME = libdha.so |
ef5f2f54c231
really fix latest fix. But now this versioning stopped making sense to me.
eyck
parents:
7812
diff
changeset
|
16 VSHORTNAME = libdha.so |
4167 | 17 endif |
12069 | 18 ifeq ($(TARGET_WIN32),yes) |
11238 | 19 LIBNAME = libdha.a |
20 SHORTNAME = libdha.a | |
21 else | |
7005
40c596e65526
adds a soname and a shared library version number to libdha.
arpi
parents:
6628
diff
changeset
|
22 LIBNAME = libdha.so.$(VERSION) |
11238 | 23 endif |
3973 | 24 |
4476 | 25 SRCS=libdha.c mtrr.c pci.c pci_names.c |
3973 | 26 OBJS=$(SRCS:.c=.o) |
27 | |
7073
b69ddd4d3bb9
removed -W -Wall -g and other gcc-specific warning/debug options
arpi
parents:
7005
diff
changeset
|
28 CFLAGS = $(OPTFLAGS) -fPIC -I. -I.. |
6057
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
29 LIBS = |
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
30 ifeq ($(TARGET_OS),OpenBSD) |
6628
10131c2b3987
Small fix for non-X86 OpenBSD by Bj«Órn Sandell <biorn at dce.chalmers.se>
atmos4
parents:
6253
diff
changeset
|
31 ifeq ($(TARGET_ARCH_X86),yes) |
6057
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
32 LIBS += -li386 |
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
33 endif |
6628
10131c2b3987
Small fix for non-X86 OpenBSD by Bj«Órn Sandell <biorn at dce.chalmers.se>
atmos4
parents:
6253
diff
changeset
|
34 endif |
3973 | 35 |
8503
9dbb9c710480
svgalib kernelhelper support (based on patch by Matan Ziv-Av <matan@svgalib.org>) and some reordering/cleanup (part #1 ;)
alex
parents:
8461
diff
changeset
|
36 # If you want libdha to use svgalib_helper for hardware access, |
9dbb9c710480
svgalib kernelhelper support (based on patch by Matan Ziv-Av <matan@svgalib.org>) and some reordering/cleanup (part #1 ;)
alex
parents:
8461
diff
changeset
|
37 # uncomment this statement, and change the -I to the correct directory |
9dbb9c710480
svgalib kernelhelper support (based on patch by Matan Ziv-Av <matan@svgalib.org>) and some reordering/cleanup (part #1 ;)
alex
parents:
8461
diff
changeset
|
38 # that includes svgalib_helper.o: |
9881 | 39 ifneq ($(wildcard svgalib_helper),) |
40 CFLAGS += -DDEV_SVGA=\"/dev/svga\" -DCONFIG_SVGAHELPER -Isvgalib_helper/ | |
41 endif | |
8503
9dbb9c710480
svgalib kernelhelper support (based on patch by Matan Ziv-Av <matan@svgalib.org>) and some reordering/cleanup (part #1 ;)
alex
parents:
8461
diff
changeset
|
42 |
3973 | 43 .SUFFIXES: .c .o |
44 | |
45 # .PHONY: all clean | |
46 | |
8506 | 47 .c.o: pci_names.c |
3973 | 48 $(CC) -c $(CFLAGS) -o $@ $< |
49 | |
50 $(LIBNAME): $(OBJS) | |
12069 | 51 ifeq ($(TARGET_WIN32),yes) |
11238 | 52 $(AR) r $(LIBNAME) $(OBJS) |
53 else | |
7812 | 54 #$(CC) -shared $(SONAME_FLAGS) -o $(LIBNAME) $(OBJS) $(LIBS) |
55 $(CC) -shared -Wl,-soname -Wl,$(LIBNAME) -o $(LIBNAME) $(OBJS) $(LIBS) | |
3973 | 56 ln -sf $(LIBNAME) $(SHORTNAME) |
7824
ef5f2f54c231
really fix latest fix. But now this versioning stopped making sense to me.
eyck
parents:
7812
diff
changeset
|
57 ln -sf $(LIBNAME) $(VSHORTNAME) |
11238 | 58 endif |
3973 | 59 |
60 all: $(LIBNAME) $(SHORTNAME) | |
61 | |
4106 | 62 pci_names.c: |
12802
af5a4cc17170
Fix build on Turkish locales when LC_ALL is already set.
diego
parents:
12692
diff
changeset
|
63 LC_ALL=C $(AWK) -f pci_db2c.awk oth/pci.db |
4106 | 64 |
3973 | 65 test: |
66 $(CC) test.c -o test $(SHORTNAME) | |
67 | |
68 clean: | |
7811
aa0536d98278
change versioning of libdha, patch from Guillem Jover <guillem.jover@menta.net>
eyck
parents:
7073
diff
changeset
|
69 rm -f *.o *.so *.so.* *~ |
3973 | 70 |
71 distclean: | |
7811
aa0536d98278
change versioning of libdha, patch from Guillem Jover <guillem.jover@menta.net>
eyck
parents:
7073
diff
changeset
|
72 rm -f Makefile.bak *.o *.so *.so.* test *~ .depend |
4106 | 73 rm -f pci_dev_ids.c pci_ids.h pci_names.c pci_names.h pci_vendors.h pci.db |
3973 | 74 |
75 dep: depend | |
76 | |
8506 | 77 depend: pci_names.c |
3973 | 78 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend |
79 | |
80 install: | |
14291 | 81 mkdir -p $(LIBDIR) |
82 install -m 755 -s -p $(LIBNAME) $(LIBDIR)/$(LIBNAME) | |
83 rm -f $(LIBDIR)/libdha.so | |
84 ln -sf $(LIBNAME) $(LIBDIR)/$(SHORTNAME) | |
6057
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
85 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
|
86 ldconfig -R |
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
87 else |
3973 | 88 ldconfig |
6057
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
4476
diff
changeset
|
89 endif |
3973 | 90 |
8461 | 91 uninstall: |
14291 | 92 rm -f $(LIBDIR)/libdha.so $(LIBDIR)/$(SHORTNAME) $(LIBDIR)/$(LIBNAME) |
8461 | 93 ifeq ($(TARGET_OS),OpenBSD) |
94 ldconfig -R | |
95 else | |
96 ldconfig | |
97 endif | |
98 | |
3973 | 99 # |
100 # include dependency files if they exist | |
101 # | |
102 ifneq ($(wildcard .depend),) | |
103 include .depend | |
104 endif |