drm/libdrm/Makefile

25 lines
532 B
Makefile
Raw Normal View History

SOURCES = xf86drm.c xf86drmHash.c xf86drmRandom.c xf86drmSL.c
OBJECTS = xf86drm.o xf86drmHash.o xf86drmRandom.o xf86drmSL.o
CFLAGS ?= -O2 -fPIC -g
all: libdrm.so
libxf86drm.a: $(OBJECTS)
ar rc $@ $+
ranlib $@
libdrm.so: $(OBJECTS)
$(CC) -shared -Wl,-hlibdrm.so.1 -o $@ $^
.c.o:
$(CC) $(CFLAGS) -c -I../shared -I../linux $<
clean:
rm -f *.a *.o *.so
2005-01-22 01:24:36 -07:00
install: libdrm.so xf86drm.h ../shared-core/drm.h
install -m 755 libdrm.so /lib
2005-01-16 17:02:04 -07:00
install -m 644 xf86drm.h /usr/include
2005-01-22 01:24:36 -07:00
install -m 644 ../shared-core/drm.h /usr/include