From 31848304870b5ddba91b82545a4ed7a097f7ec4c Mon Sep 17 00:00:00 2001 From: Philippe Houdoin Date: Sat, 14 Aug 2004 09:23:09 +0000 Subject: Move BeOS build into main Makefiles chain. --- src/mesa/Makefile | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'src/mesa') diff --git a/src/mesa/Makefile b/src/mesa/Makefile index 95ca042e74..42e05ada26 100644 --- a/src/mesa/Makefile +++ b/src/mesa/Makefile @@ -24,11 +24,16 @@ default: $(MAKE) linux-solo ; \ elif [ "${DRIVER_DIRS}" = "osmesa" ] ; then \ $(MAKE) osmesa-only ; \ + elif [ "$(DRIVER_DIRS)" = "beos" ]; then \ + $(MAKE) beos ; \ else \ $(MAKE) stand-alone ; \ fi - +# BeOS driver target +beos: depend subdirs mesa.a + cd drivers/beos; $(MAKE) + ###################################################################### # Linux solo DRI drivers @@ -45,19 +50,21 @@ SOLO_C_SOURCES = \ SOLO_OBJECTS = $(SOLO_C_SOURCES:.c=.o) \ $(ASM_SOURCES:.S=.o) - -linux-solo: depend subdirs mesa.a driver-dirs +linux-solo: depend subdirs mesa.a drivers-dri # Make archive of core object files mesa.a: $(SOLO_OBJECTS) rm -f $@ ar rcv $@ $(SOLO_OBJECTS) ranlib $@ + @if [ "${CONFIG_NAME}" = "beos" ] ; then \ + mimeset -f "$@" ; \ + fi # note: cannot use the name of the directory ("drivers") as the # target, otherwise make will look & see that the "drivers" directory # already exists, so not try to rebuild it... -driver-dirs: +drivers-dri: cd drivers/dri ; $(MAKE) @@ -95,7 +102,6 @@ OSMESA16_OBJECTS = \ $(OSMESA_DRIVER_OBJECTS) - stand-alone: depend subdirs $(LIB_DIR)/$(GL_LIB_NAME) $(LIB_DIR)/$(OSMESA_LIB_NAME) osmesa-only: depend subdirs $(LIB_DIR)/$(OSMESA_LIB_NAME) -- cgit v1.2.3