summaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2001-04-20 07:52:06 +0000
committerManuel Novoa III <mjn3@codepoet.org>2001-04-20 07:52:06 +0000
commitc75d8083ee1db2ab7afb9c82db8c67d91edd18a2 (patch)
tree2e310ab30cf872946a2c98d7253bf68ee323011b /Rules.mak
parent78292826b6dd42b8a4415cd59772bd0da9a5e877 (diff)
Change shared lib name. Update install_new target in Makefile.
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak8
1 files changed, 8 insertions, 0 deletions
diff --git a/Rules.mak b/Rules.mak
index 887933dd3..0cebfb5f3 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -24,6 +24,14 @@
include $(TOPDIR)Config
+MAJOR_VERSION=0
+MINOR_VERSION=95
+
+SHARED_FULLNAME=uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).so
+SHARED_MAJORNAME=libc.so.$(MAJOR_VERSION)
+
+BUILDTIME = $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
+
GCCINCDIR = $(shell $(CC) -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
# use '-Os' optimization if available, else use -O2, allow Config to override