gbm/Makefile.template: Remove builtin-compile path
authorBenjamin Franzke <benjaminfranzke@googlemail.com>
Tue, 24 Jan 2012 08:29:43 +0000 (09:29 +0100)
committerBenjamin Franzke <benjaminfranzke@googlemail.com>
Tue, 24 Jan 2012 09:00:52 +0000 (10:00 +0100)
Builtins are handled by the main gbm Makefile since
06ad64ad29e7aa9e2d001f6bd1f8c1c1f77050b8.

src/gbm/backends/Makefile.template

index f0f182317b4875ac018d08f8368516fe46f8e7ce..eba1dd7e45386680bac766f05c748f31382bb79c 100644 (file)
 GBM_BACKEND_PATH = $(TOP)/$(LIB_DIR)/gbm/$(GBM_BACKEND).so
 GBM_OBJECTS = $(GBM_SOURCES:.c=.o)
 
-# built-in or external
-ifeq ($(GBM_BUILTIN), true)
-GBM_TARGET = lib$(GBM_BACKEND).a
-GBM_INSTALL =
-else
 GBM_TARGET = $(GBM_BACKEND_PATH)
 GBM_INSTALL = install-so
-endif
 
 default: depend $(GBM_TARGET) $(GBM_EXTRA_TARGETS)
 
@@ -36,9 +30,6 @@ $(GBM_BACKEND).so: $(GBM_OBJECTS) Makefile $(TOP)/src/gbm/backends/Makefile.temp
                $(MKLIB_OPTIONS) \
                $(GBM_OBJECTS) $(GBM_LIBS) -lgbm
 
-lib$(GBM_BACKEND).a: $(GBM_OBJECTS) Makefile $(TOP)/src/gbm/backends/Makefile.template
-       @$(MKLIB) -o $(GBM_BACKEND) -static $(GBM_OBJECTS)
-
 .c.o:
        $(CC) -c $(GBM_INCLUDES) $(CFLAGS) $(GBM_CFLAGS) $< -o $@
 
@@ -50,7 +41,6 @@ install: $(GBM_INSTALL) $(GBM_EXTRA_INSTALL)
 
 clean: $(GBM_EXTRA_CLEAN)
        rm -f $(GBM_BACKEND).so
-       rm -f lib$(GBM_BACKEND).a
        rm -f $(GBM_OBJECTS)
        rm -f depend depend.bak