make: Renamed LIBDIR to BUILD_LIBDIR

This commit is contained in:
Jan Lindemann 2007-08-21 16:20:19 +00:00 committed by Jan Lindemann
commit 1924377731
4 changed files with 7 additions and 7 deletions

View file

@ -4,7 +4,7 @@
# $Id$
LDFLAGS += -shared
BUILD_SHOBJS = $(addprefix $(LIBDIR)/, $(SHOBJS))
BUILD_SHOBJS = $(addprefix $(BUILD_LIBDIR)/, $(SHOBJS))
include $(MODDIR)/make/defs.mk
include $(MODDIR)/make/ldlibpath.mk
@ -14,5 +14,5 @@ all: $(SHOBJS) $(BUILD_SHOBJS)
clean: objclean textclean localclean
install: $(ALL) installso
$(LIBDIR)/%.so: %.so
$(BUILD_LIBDIR)/%.so: %.so
install -m 755 $< $@