r300g: Use Xorg template makefile
authorJakob Bornecrantz <jakob@vmware.com>
Sun, 6 Jun 2010 10:50:12 +0000 (11:50 +0100)
committerJakob Bornecrantz <jakob@vmware.com>
Sun, 6 Jun 2010 11:07:48 +0000 (12:07 +0100)
src/gallium/targets/xorg-radeon/Makefile

index 85aa711a4f3d058c1bd099e2c9bed34e8e5a98d3..a4951c4bba0cc0d646e2078868901ef1c1ac9c15 100644 (file)
@@ -1,49 +1,22 @@
 TOP = ../../../..
 include $(TOP)/configs/current
 
-TARGET     = radeong_drv.so
-CFILES     = $(wildcard ./*.c)
-OBJECTS    = $(patsubst ./%.c,./%.o,$(CFILES))
+LIBNAME = radeon_drv.so
 
-CFLAGS = -DHAVE_CONFIG_H \
-         -g -Wall -Wimplicit-function-declaration -fPIC \
-         $(shell pkg-config --cflags pixman-1 xorg-server libdrm xproto) \
-         -I$(TOP)/src/gallium/include \
-         -I$(TOP)/src/gallium/drivers \
-         -I$(TOP)/src/gallium/auxiliary \
-         -I${TOP}/src/mesa \
-         -I$(TOP)/include \
-         -I$(TOP)/src/egl/main
+C_SOURCES = \
+       radeon_xorg.c
 
-LIBS = \
-       $(TOP)/src/gallium/state_trackers/xorg/libxorgtracker.a \
-       $(TOP)/src/gallium/winsys/radeon/drm/libradeonwinsys.a \
-       $(TOP)/src/gallium/drivers/r300/libr300.a \
-       $(TOP)/src/gallium/drivers/trace/libtrace.a \
-       $(TOP)/src/gallium/drivers/rbug/librbug.a \
-       $(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a \
-       $(GALLIUM_AUXILIARIES)
+DRIVER_DEFINES = \
+       -DHAVE_CONFIG_H
 
-TARGET_STAGING = $(TOP)/$(LIB_DIR)/gallium/$(TARGET)
-#############################################
+DRIVER_LINKS = \
+        $(TOP)/src/gallium/state_trackers/xorg/libxorgtracker.a \
+        $(TOP)/src/gallium/winsys/radeon/drm/libradeonwinsys.a \
+        $(TOP)/src/gallium/drivers/r300/libr300.a \
+        $(TOP)/src/gallium/drivers/trace/libtrace.a \
+        $(TOP)/src/gallium/drivers/rbug/librbug.a \
+        $(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a \
+        $(GALLIUM_AUXILIARIES) \
+       $(shell pkg-config --libs libdrm libdrm_intel)
 
-all default: $(TARGET) $(TARGET_STAGING)
-
-$(TARGET): $(OBJECTS) Makefile $(TOP)/src/gallium/state_trackers/xorg/libxorgtracker.a $(LIBS)
-       $(TOP)/bin/mklib -noprefix -o $@ \
-       $(OBJECTS) $(LIBS) $(shell pkg-config --libs libdrm) -ldrm_radeon
-
-$(TOP)/$(LIB_DIR)/gallium:
-       mkdir -p $@
-
-$(TARGET_STAGING): $(TARGET) $(TOP)/$(LIB_DIR)/gallium
-       $(INSTALL) $(TARGET) $(TOP)/$(LIB_DIR)/gallium
-
-clean:
-       rm -rf $(OBJECTS) $(TARGET)
-
-install:
-       $(INSTALL) -d $(DESTDIR)/$(XORG_DRIVER_INSTALL_DIR)
-       $(MINSTALL) -m 755 $(TARGET) $(DESTDIR)/$(XORG_DRIVER_INSTALL_DIR)
-
-.PHONY = all clean install
+include ../Makefile.xorg