1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
###############################################################################
## Makefile.Solaris - System Dependent Makefile for SunOS
##
## Mitch DSouza - Mitch.Dsouza@Dubai.Sun.COM
## 21st Jan 1995
###############################################################################
## C++ compiler to use
CC=CC -I/usr/openwin/include
## C++ compiler flags
CPPFLAGS=-O
## System Includes
SYS_INCLUDES =-I/usr/openwin/include
## System Libraries
SYS_LIBS = -L/usr/openwin/lib -lX11
## Archiver
AR=ar
## Archiver create flags
AR_CREATE_FLAGS=r
## Library index generator (none needed for Solaris)
RANLIB=/bin/true
## Installation programs
INSTALL=install
STRIP=strip
MKDIR=mkdir -p
## Make parameters that need to be passed
DEPENDENT_PARMS = CC='$(CC)' CFLAGS='$(CFLAGS)' CPPFLAGS='$(CPPFLAGS)' \
AR='$(AR)' AR_CREATE_FLAGS='$(AR_CREATE_FLAGS)' \
RANLIB='$(RANLIB)' \
SYS_INCLUDES='$(SYS_INCLUDES)' SYS_LIBS='$(SYS_LIBS)' \
INSTALL='$(INSTALL)' STRIP='$(STRIP)' MKDIR='$(MKDIR)'
## Include the system independent makefile
include Makefile.common
|