Skip to content
Snippets Groups Projects
Commit e759112a authored by toy's avatar toy
Browse files

Add some comments and update to use -DSOLARIS25 and solaris-os.c by

default.
parent c02c3223
No related branches found
No related tags found
No related merge requests found
CPPFLAGS = -I/usr/openwin/include -I/usr/include/X11 -DSOLARIS -DSVR4
# For Solaris 2.4 or earlier, remove -DSOLARIS25 from CPPFLAGS.
CPPFLAGS = -I/usr/openwin/include -I/usr/include/X11 -DSOLARIS -DSOLARIS25 -DSVR4
CC = gcc
CPP = gcc -E
CFLAGS = -g
......@@ -9,6 +11,11 @@ DEPEND_FLAGS = -traditional-cpp
NM = ./solaris-nm
ASSEM_SRC = sparc-assem.S
ARCH_SRC = sparc-arch.c
OS_SRC = sunos-os.c os-common.c undefineds.c
# For Solaris, you may also use sunos-os.c instead of solaris-os.c.
# This has been checked out on Solaris 2.7 (aka 7) without problems.
# The resulting binaries work ok on 2.5.
OS_SRC = solaris-os.c os-common.c undefineds.c
OS_LINK_FLAGS=
OS_LIBS= -lsocket -lnsl -ldl
CPPFLAGS = -I/usr/include/X11 -DSOLARIS -DSVR4
# For Solaris 2.4 or earlier, remove -DSOLARIS25 from CPPFLAGS.
CPPFLAGS = -I/usr/include/X11 -DSOLARIS -DSOLARIS25 -DSVR4
CC = cc
CPP = cc -E
# -xs so we can use gdb
......@@ -8,6 +10,11 @@ COMPILE.S = as -P $(CPPFLAGS)
NM = ./solaris-nm
ASSEM_SRC = sparc-assem.S
ARCH_SRC = sparc-arch.c
# For Solaris, you may also use sunos-os.c instead of solaris-os.c.
# This has been checked out on Solaris 2.7 (aka 7) without problems.
# The resulting binaries work ok on 2.5.
OS_SRC = sunos-os.c os-common.c undefineds.c
OS_LINK_FLAGS=
OS_LIBS= -lsocket -lnsl -ldl
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment