From 4b23b5fc3ebe5660ad8d5eed8057877a9c7592ea Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Sun, 30 Jan 2005 03:30:45 +0000 Subject: Final pass of libdrm.so work: - Add $(DESTDIR) for distributors doing package creation - Remove OS-specific include path from build - Add /usr/include/drm for driver-kernel API - Install all of shared-core/*.h in /usr/include/drm - Rename xf86drm.h to libdrm.h since we're not X biased anymore - Include backwards compat for xf86drm.h name, with a warning - Fix libdrm source to account for drm.h living in /usr/include/drm --- libdrm/Makefile | 49 ++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 40 insertions(+), 9 deletions(-) (limited to 'libdrm/Makefile') diff --git a/libdrm/Makefile b/libdrm/Makefile index 58759af2..098f31a1 100644 --- a/libdrm/Makefile +++ b/libdrm/Makefile @@ -2,23 +2,54 @@ SOURCES = xf86drm.c xf86drmHash.c xf86drmRandom.c xf86drmSL.c OBJECTS = xf86drm.o xf86drmHash.o xf86drmRandom.o xf86drmSL.o CFLAGS ?= -O2 -fPIC -g +DEFINES = -D_IN_LIBDRM -all: libdrm.so +# set this if you're installing into a fake root +DESTDIR ?= + +DRIVER_HEADERS = ../shared-core/drm.h \ + ../shared-core/drm_sarea.h \ + ../shared-core/i915_drm.h \ + ../shared-core/i915_drv.h \ + ../shared-core/mach64_drm.h \ + ../shared-core/mach64_drv.h \ + ../shared-core/mga_drm.h \ + ../shared-core/mga_drv.h \ + ../shared-core/mga_ucode.h \ + ../shared-core/r128_drm.h \ + ../shared-core/r128_drv.h \ + ../shared-core/radeon_drm.h \ + ../shared-core/radeon_drv.h \ + ../shared-core/savage_drm.h \ + ../shared-core/savage_drv.h \ + ../shared-core/sis_drm.h \ + ../shared-core/sis_drv.h \ + ../shared-core/sis_ds.h \ + ../shared-core/tdfx_drv.h \ + ../shared-core/via_3d_reg.h \ + ../shared-core/via_drm.h \ + ../shared-core/via_drv.h \ + ../shared-core/via_ds.h \ + ../shared-core/via_mm.h \ + ../shared-core/via_verifier.h -libxf86drm.a: $(OBJECTS) - ar rc $@ $+ - ranlib $@ +all: libdrm.so libdrm.so: $(OBJECTS) $(CC) -shared -Wl,-hlibdrm.so.1 -o $@ $^ .c.o: - $(CC) $(CFLAGS) -c -I../shared -I../linux $< + $(CC) $(DEFINES) $(CFLAGS) -c -I../shared-core $< clean: rm -f *.a *.o *.so -install: libdrm.so xf86drm.h ../shared-core/drm.h - install -m 755 libdrm.so /lib - install -m 644 xf86drm.h /usr/include - install -m 644 ../shared-core/drm.h /usr/include +# XXX remove the xf86drm.h compat once this is widely installed +install: libdrm.so xf86drm.h $(DRIVER_HEADERS) + install -m 755 libdrm.so $(DESTDIR)/lib + install -m 644 xf86drm.h $(DESTDIR)/usr/include/libdrm.h + install -m 644 xf86drm.h $(DESTDIR)/usr/include/xf86drm.h + echo '#warning Including xf86drm.h is deprecated, use libdrm.h' >> \ + $(DESTDIR)/usr/include/xf86drm.h + mkdir -p -m 755 $(DESTDIR)/usr/include/drm + install -m 644 $(DRIVER_HEADERS) $(DESTDIR)/usr/include/drm -- cgit v1.2.3