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 | b62b2d6ee4170b8d2cff9e546d67cc24e0c782c6 (patch) | |
tree | 2f22fd1447d75b67bdecc3491f0720d0058a1cff /libtommath/makefile.shared | |
parent | 32dabb168bc76e93bb522c8de30e3023df038a0f (diff) | |
download | tcl-b62b2d6ee4170b8d2cff9e546d67cc24e0c782c6.zip tcl-b62b2d6ee4170b8d2cff9e546d67cc24e0c782c6.tar.gz tcl-b62b2d6ee4170b8d2cff9e546d67cc24e0c782c6.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) |