diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2001-04-20 07:52:06 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2001-04-20 07:52:06 +0000 |
commit | c75d8083ee1db2ab7afb9c82db8c67d91edd18a2 (patch) | |
tree | 2e310ab30cf872946a2c98d7253bf68ee323011b /Rules.mak | |
parent | 78292826b6dd42b8a4415cd59772bd0da9a5e877 (diff) |
Change shared lib name. Update install_new target in Makefile.
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 |