diff options
author | Kevin B Kenny <kennykb@acm.org> | 2006-12-01 00:08:10 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2006-12-01 00:08:10 (GMT) |
commit | 982d09f4d635271e2c515dbe49a9f44d1a42c59a (patch) | |
tree | e79d541814ca440317f0079b20cc3f3dd3ad7031 /libtommath/makefile.shared | |
parent | 2c384db27cc46862fb7a386ba652980bd4accd35 (diff) | |
download | tcl-982d09f4d635271e2c515dbe49a9f44d1a42c59a.zip tcl-982d09f4d635271e2c515dbe49a9f44d1a42c59a.tar.gz tcl-982d09f4d635271e2c515dbe49a9f44d1a42c59a.tar.bz2 |
Import of libtommath 0.39+
Diffstat (limited to 'libtommath/makefile.shared')
-rw-r--r-- | libtommath/makefile.shared | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libtommath/makefile.shared b/libtommath/makefile.shared index 9d2c20a..8522d44 100644 --- a/libtommath/makefile.shared +++ b/libtommath/makefile.shared @@ -1,9 +1,9 @@ #Makefile for GCC # #Tom St Denis -VERSION=0:37 +VERSION=0:39 -CC = libtool --mode=compile gcc +CC = libtool --mode=compile --tag=CC gcc CFLAGS += -I./ -Wall -W -Wshadow -Wsign-compare @@ -86,7 +86,8 @@ $(LIBNAME): $(OBJECTS) libtool --mode=link gcc *.lo -o $(LIBNAME) -rpath $(LIBPATH) -version-info $(VERSION) install: $(LIBNAME) - libtool --mode=install install -c $(LIBNAME) $(LIBPATH)/$(LIBNAME) + install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH) + libtool --mode=install install -c $(LIBNAME) $(DESTDIR)$(LIBPATH)/$(LIBNAME) install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(INCPATH) install -g $(GROUP) -o $(USER) $(HEADERS) $(DESTDIR)$(INCPATH) |