diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-04 13:54:25 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-04 13:54:25 +0000 |
commit | c3fb902f962cde7e49e425253c57d6a62e01e3a4 (patch) | |
tree | 60fca433e32b2ad7bf74f24ae5bd677e543aeed7 /include/makeinclude/platform_linux_lxpthread.GNU | |
parent | 6c870f408b8cd59eb927213afadda2ccf8412379 (diff) | |
download | ATCD-c3fb902f962cde7e49e425253c57d6a62e01e3a4.tar.gz |
added "s" to ARFLAGS so that ranlib is no longer necessary
Diffstat (limited to 'include/makeinclude/platform_linux_lxpthread.GNU')
-rw-r--r-- | include/makeinclude/platform_linux_lxpthread.GNU | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/include/makeinclude/platform_linux_lxpthread.GNU b/include/makeinclude/platform_linux_lxpthread.GNU index 68f14e3d094..09cf8b793f3 100644 --- a/include/makeinclude/platform_linux_lxpthread.GNU +++ b/include/makeinclude/platform_linux_lxpthread.GNU @@ -11,21 +11,20 @@ debug = 1 optimize = 1 -CC = gcc -CXX = g++ -CFLAGS += -Wall -pipe \ - -D_POSIX_THREADS -D_POSIX_THREAD_SAFE_FUNCTIONS -D_REENTRANT -CCFLAGS += $(CFLAGS) -fno-implicit-templates -DCFLAGS += -g -DLD = $(CXX) -LD = $(CXX) -LIBS += -ldl -lpthread -OCFLAGS += -O3 -PIC = -fPIC -AR = ar -ARFLAGS = ruv -RANLIB = ranlib - +CC = gcc +CXX = g++ +CFLAGS += -Wall -pipe \ + -D_POSIX_THREADS -D_POSIX_THREAD_SAFE_FUNCTIONS -D_REENTRANT +CCFLAGS += $(CFLAGS) -fno-implicit-templates +DCFLAGS += -g +DLD = $(CXX) +LD = $(CXX) +LIBS += -ldl -lpthread +OCFLAGS += -O3 +PIC = -fPIC +AR = ar +ARFLAGS = rsuv +RANLIB = @true SOFLAGS = $(CPPFLAGS) -shared SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.o $<; \ $(SOLINK.cc) -o $@ $(LDFLAGS) $(VSHDIR)$*.o |