summaryrefslogtreecommitdiff
path: root/include/makeinclude/platform_lynxos.GNU
diff options
context:
space:
mode:
Diffstat (limited to 'include/makeinclude/platform_lynxos.GNU')
-rw-r--r--include/makeinclude/platform_lynxos.GNU49
1 files changed, 0 insertions, 49 deletions
diff --git a/include/makeinclude/platform_lynxos.GNU b/include/makeinclude/platform_lynxos.GNU
deleted file mode 100644
index 7117e3d4657..00000000000
--- a/include/makeinclude/platform_lynxos.GNU
+++ /dev/null
@@ -1,49 +0,0 @@
-# $Id$
-# LynxOS with g++
-
-debug = 1
-shared_libs =
-static_libs = 1
-
-ifneq ($(shell uname -s),LynxOS)
- CROSS-COMPILE = 1
-
- #### The following may need to be customized for your host or target type.
- #### Or, you can source the appropriate (for your shell) Lynx SETUP file
- #### before running "make".
-
- ifeq (,$(HOST_OS))
- HOST_OS = sunos
- endif # HOST_OS
-
- ifeq (,$(LYNXTARGET))
- LYNXTARGET = x86
- endif # LYNXTARGET
-
- ifeq (,$(VERSION))
- VERSION=2.5.0
- endif # VERSION
-
- ifeq (,$(findstring /usr/lynx/$(VERSION)/$(LYNXTARGET),$(PATH)))
- PATH:=\
-/usr/lynx/$(VERSION)/$(LYNXTARGET)/cdk/$(HOST_OS)-$(LYNXTARGET)/bin:/usr/lynx/$(VERSION)/$(LYNXTARGET)/cdk/$(HOST_OS)-$(LYNXTARGET)/usr/bin:$(PATH)
- endif # PATH
-endif # ! LynxOS
-
-CC = gcc
-CXX = g++
-CFLAGS += -mthreads -pipe -ansi -Wall -Wpointer-arith -Winline
-CCFLAGS += $(CFLAGS) -fno-implicit-templates
-DCFLAGS += -g
-DLD = $(CXX)
-LD = $(CXX)
-LIBS += -lnetinet -lnsl
-OCFLAGS += -O2
-AR = ar
-ARFLAGS = ruv
-RANLIB = @true
-PRELIB = @true
-
-# To save much disk space, strip all executables. Comment the
-# following line out if you want to debug.
-POSTLINK = ; strip $@