diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-03-18 03:33:09 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-03-18 03:33:09 +0000 |
commit | 27f7061a05c3ac7c393e15b7defbc106eca7adc7 (patch) | |
tree | cec34961658b7c2e3798250badfeb6eb73efbf1e /Makefile | |
parent | 1e1b96f7e65461ac1ffaa98c194780151c95cd98 (diff) |
allow the SHARED_LIB var to be overridden
svn path=/trunk/externals/template/; revision=16077
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -237,7 +237,7 @@ ALL_LIBS := $(LIBS) $(ALL_LIBS) SHARED_SOURCE ?= $(wildcard lib$(LIBRARY_NAME).c) SHARED_HEADER ?= $(shell test ! -e $(LIBRARY_NAME).h || echo $(LIBRARY_NAME).h) -SHARED_LIB = $(SHARED_SOURCE:.c=.$(SHARED_EXTENSION)) +SHARED_LIB ?= $(SHARED_SOURCE:.c=.$(SHARED_EXTENSION)) SHARED_TCL_LIB = $(wildcard lib$(LIBRARY_NAME).tcl) .PHONY = install libdir_install single_install install-doc install-examples install-manual install-unittests clean distclean dist etags $(LIBRARY_NAME) |