Remove the old, complicated default build rule; use the new driver_subdirs rule
[mesa.git] / src / mesa / Makefile
index 08d723553e8639b19a54a544ca9ad85107e01f52..06b4e9ccebade0c9d9738d04e63ad61cbb97dab5 100644 (file)
@@ -6,11 +6,6 @@ include $(TOP)/configs/current
 include sources
 
 
-GL_MAJOR = 1
-GL_MINOR = 5
-GL_TINY = 0$(MESA_MAJOR)0$(MESA_MINOR)0$(MESA_TINY)
-
-
 .SUFFIXES : .cpp
 
 .c.o:
@@ -23,20 +18,18 @@ GL_TINY = 0$(MESA_MAJOR)0$(MESA_MINOR)0$(MESA_TINY)
        $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
 
 
-# Figure out what to make here
-default: depend
-       @for driver in $(DRIVER_DIRS) ; do \
-         case "$$driver" in \
-           x11)      $(MAKE) stand-alone || exit 1 ;; \
-           dri)      $(MAKE) linux-solo || exit 1 ;; \
-           osmesa)   $(MAKE) osmesa-only || exit 1 ;; \
-           beos)     $(MAKE) beos || exit 1 ;; \
-           directfb) $(MAKE) directfb || exit 1 ;; \
-           fbdev)    $(MAKE) fbdev || exit 1 ;; \
-           *) echo "$$driver is invalid in DRIVER_DIRS" >&2; exit 1;; \
-         esac ; \
-       done
 
+# Default: build dependencies, then mesa subdirs, then convenience
+# libs (.a) and finally the device drivers:
+default: depend subdirs libmesa.a libglapi.a driver_subdirs
+
+
+# this doesn't work yet but is probably the way to go in the future
+new_install:
+       (cd drivers && $(MAKE) install)
+
+
+# XXX replace this with new_install above someday
 install: default
        @for driver in $(DRIVER_DIRS) ; do \
          case "$$driver" in \
@@ -51,103 +44,42 @@ install: default
        done
 
 
-######################################################################
-# BeOS driver target
-
-beos: depend subdirs libmesa.a
-       cd drivers/beos && $(MAKE)
-
 
 ######################################################################
-# Linux DRI drivers
+# Helper libraries used by many drivers:
 
-# Make archive of core object files
+# Make archive of core mesa object files
 libmesa.a: $(SOLO_OBJECTS)
        @ $(TOP)/bin/mklib -o mesa -static $(SOLO_OBJECTS);
        @if [ "${CONFIG_NAME}" = "beos" ] ; then \
                mimeset -f "$@" ; \
        fi
 
-linux-solo: depend subdirs libmesa.a
-       cd drivers/dri && $(MAKE)
-
-
-#####################################################################
-# Stand-alone Mesa libGL, no built-in drivers (DirectFB)
-
-libgl-core: $(CORE_OBJECTS)
-       @ $(TOP)/bin/mklib -o $(GL_LIB) -linker '$(CC)' -ldflags '$(LDFLAGS)' \
-               -major $(MESA_MAJOR) -minor $(MESA_MINOR) -patch $(MESA_TINY) \
-               -install $(TOP)/$(LIB_DIR) $(MKLIB_OPTIONS) $(CORE_OBJECTS) \
-               $(GL_LIB_DEPS)
-
-directfb: depend subdirs libgl-core
-       cd drivers/directfb && $(MAKE)
-
+# Make archive of gl* API dispatcher functions only
+libglapi.a: $(GLAPI_OBJECTS)
+       @ $(TOP)/bin/mklib -o glapi -static $(GLAPI_OBJECTS)
 
-#####################################################################
-# fbdev Mesa driver (libGL.so)
 
-fbdev: $(CORE_OBJECTS) $(FBDEV_DRIVER_OBJECTS) $(COMMON_DRIVER_OBJECTS)
-       @ $(TOP)/bin/mklib -o $(GL_LIB) -linker '$(CC)' -ldflags '$(LDFLAGS)' \
-               -major $(MESA_MAJOR) -minor $(MESA_MINOR) -patch $(MESA_TINY) \
-               -install $(TOP)/$(LIB_DIR) $(MKLIB_OPTIONS) \
-               $(CORE_OBJECTS) $(FBDEV_DRIVER_OBJECTS) \
-               $(COMMON_DRIVER_OBJECTS) $(GL_LIB_DEPS)
+######################################################################
+# Device drivers
+driver_subdirs:
+       (cd drivers && $(MAKE))
 
 
 ######################################################################
-# Stand-alone Mesa libGL and libOSMesa
-STAND_ALONE_DRIVER_SOURCES = \
-       $(COMMON_DRIVER_SOURCES) \
-       $(X11_DRIVER_SOURCES)
-
-STAND_ALONE_DRIVER_OBJECTS = $(STAND_ALONE_DRIVER_SOURCES:.c=.o)
-
-STAND_ALONE_OBJECTS = \
-       $(CORE_OBJECTS) \
-       $(STAND_ALONE_DRIVER_OBJECTS)
-
-# For libOSMesa16 or libOSMesa32 we link _all_ the objects into the library,
-# not just the osmesa.o object (i.e. we don't have a libGL).
-OSMESA16_OBJECTS = \
-       $(CORE_OBJECTS) \
-       $(COMMON_DRIVER_OBJECTS) \
-       $(OSMESA_DRIVER_OBJECTS)
-
-
-stand-alone: depend subdirs libmesa.a \
-       $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME)
-
-osmesa-only: depend subdirs \
-       $(TOP)/$(LIB_DIR)/$(OSMESA_LIB_NAME)
-
-# Make the GL library
-$(TOP)/$(LIB_DIR)/$(GL_LIB_NAME): $(STAND_ALONE_OBJECTS)
-       @ $(TOP)/bin/mklib -o $(GL_LIB) -linker '$(CC)' -ldflags '$(LDFLAGS)' \
-               -major $(GL_MAJOR) -minor $(GL_MINOR) -patch $(GL_TINY) \
-               -install $(TOP)/$(LIB_DIR) \
-               $(MKLIB_OPTIONS) $(GL_LIB_DEPS) $(STAND_ALONE_OBJECTS)
-
-# Make the OSMesa library
-$(TOP)/$(LIB_DIR)/$(OSMESA_LIB_NAME): $(OSMESA_DRIVER_OBJECTS) $(OSMESA16_OBJECTS)
-       @ if [ "${DRIVER_DIRS}" = "osmesa" ] ; then \
-               $(TOP)/bin/mklib -o $(OSMESA_LIB) -linker '$(CC)' \
-                       -ldflags '$(LDFLAGS)' -major $(MESA_MAJOR) \
-                       -minor $(MESA_MINOR) -patch $(MESA_TINY) \
-                       -install $(TOP)/$(LIB_DIR) $(MKLIB_OPTIONS) \
-                       $(OSMESA_LIB_DEPS) $(OSMESA16_OBJECTS) ; \
-       else \
-               $(TOP)/bin/mklib -o $(OSMESA_LIB) -linker '$(CC)' \
-                       -ldflags '$(LDFLAGS)' -major $(MESA_MAJOR) \
-                       -minor $(MESA_MINOR) -patch $(GL_TINY) \
-                       -install $(TOP)/$(LIB_DIR) $(MKLIB_OPTIONS) \
-                       $(OSMESA_LIB_DEPS) $(OSMESA_DRIVER_OBJECTS) ; \
+# Assembly subdirs
+subdirs:
+       @ if echo "$(ASM_FLAGS)" | grep -q USE_X86_ASM ; then \
+               (cd x86 && $(MAKE)) || exit 1 ; \
+       fi
+       @ if echo "$(ASM_FLAGS)" | grep -q USE_X86_64_ASM ; then \
+               (cd x86 && $(MAKE)) || exit 1 ; \
+               (cd x86-64 && $(MAKE)) || exit 1 ; \
        fi
 
 
 ######################################################################
-# Generic stuff
+# Dependency generation
 
 depend: $(ALL_SOURCES)
        @ echo "running $(MKDEP)"
@@ -156,14 +88,8 @@ depend: $(ALL_SOURCES)
                > /dev/null 2>/dev/null
 
 
-subdirs:
-       @ if echo "$(ASM_FLAGS)" | grep -q USE_X86_ASM ; then \
-               (cd x86 && $(MAKE)) || exit 1 ; \
-       fi
-       @ if echo "$(ASM_FLAGS)" | grep -q USE_X86_64_ASM ; then \
-               (cd x86 && $(MAKE)) || exit 1 ; \
-               (cd x86-64 && $(MAKE)) || exit 1 ; \
-       fi
+######################################################################
+# Installation rules
 
 pcedit = sed \
        -e 's,@INSTALL_DIR@,$(INSTALL_DIR),' \
@@ -193,22 +119,22 @@ install-osmesa: default
 install-dri:
        cd drivers/dri && $(MAKE) install
 
-## NOT INSTALLED YET:
-## $(INSTALL) -d $(DESTDIR)$(INSTALL_DIR)/include/GLES
-## $(INSTALL) -m 644 include/GLES/*.h $(DESTDIR)$(INSTALL_DIR)/include/GLES
 
 
 # Emacs tags
 tags:
        etags `find . -name \*.[ch]` $(TOP)/include/GL/*.h
 
+
 clean:
        -rm -f */*.o
        -rm -f */*/*.o
-       -rm -f depend depend.bak libmesa.a
+       -rm -f depend depend.bak libmesa.a libglapi.a
        -rm -f drivers/*/*.o
        -@cd drivers/dri && $(MAKE) clean
        -@cd drivers/xorg && $(MAKE) clean
+       -@cd drivers/x11 && $(MAKE) clean
+       -@cd drivers/osmesa && $(MAKE) clean
        -@cd x86 && $(MAKE) clean
        -@cd x86-64 && $(MAKE) clean