summaryrefslogtreecommitdiff
path: root/include/makeinclude/platform_linux_lxpthread.GNU
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-03-05 19:55:45 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-03-05 19:55:45 +0000
commitf8eed2e0bc99fe678c42222cd43cdace382f3624 (patch)
tree7f4c7e5c8bca44c7e3b1bcdf4b20c03ea7be02ce /include/makeinclude/platform_linux_lxpthread.GNU
parentdc5ba39342d677b48bafa288da5aced31980c48c (diff)
downloadATCD-f8eed2e0bc99fe678c42222cd43cdace382f3624.tar.gz
removed -D__ACE_INLINE__ because that's now in the config.h file; split out CFLAGS and CCFLAGS
Diffstat (limited to 'include/makeinclude/platform_linux_lxpthread.GNU')
-rw-r--r--include/makeinclude/platform_linux_lxpthread.GNU6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/makeinclude/platform_linux_lxpthread.GNU b/include/makeinclude/platform_linux_lxpthread.GNU
index 647634c7569..4f11c69642f 100644
--- a/include/makeinclude/platform_linux_lxpthread.GNU
+++ b/include/makeinclude/platform_linux_lxpthread.GNU
@@ -6,8 +6,10 @@
# to compile it yourself (no binaries included) --
# Jan Rychter <jwr@icm.edu.pl>
-CC = gcc -w
-CXX = gcc -w -I. -fno-strict-prototypes -D__ACE_INLINE__ -D_POSIX_THREADS -D_POSIX_THREAD_SAFE_FUNCTIONS -D_REENTRANT
+CC = gcc
+CXX = $(CC)
+CFLAGS += -w -I. -fno-strict-prototypes -D_POSIX_THREADS -D_POSIX_THREAD_SAFE_FUNCTIONS -D_REENTRANT
+CCFLAGS += $(CFLAGS)
DLD = $(CXX)
LD = $(CXX)
LIBS += -ldl -lpthread -lstdc++