1997-09-21 22:28:44 +00:00
|
|
|
#
|
1998-02-18 18:22:04 +00:00
|
|
|
# prog.mk
|
1997-09-24 06:43:53 +00:00
|
|
|
#
|
1998-02-18 18:22:04 +00:00
|
|
|
# $Id: prog.mk,v 1.7 1998/02/18 18:22:04 tribby Exp $
|
1997-09-21 22:28:44 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# This makefile is intended for use with dmake(1) and occ(1) on Apple IIGS
|
|
|
|
# It is intended to be .INCLUDE-ed after definition of macros
|
|
|
|
# PROG=<program name>
|
|
|
|
# SRCS=<source file list; optional if only $(PROG).c>
|
|
|
|
# BINDIR=<installation binary directory; default /bin>
|
|
|
|
# MANDIR=<installation manual directory; default /usr/man>
|
|
|
|
|
|
|
|
#
|
|
|
|
# You have the option to set several macros (either in the makefile or on
|
1998-02-18 18:22:04 +00:00
|
|
|
# the dmake command line) that will be recognized by prog.mk:
|
1997-09-21 22:28:44 +00:00
|
|
|
#
|
|
|
|
# * To turn on debugging, use
|
|
|
|
# DEBUG=<parm>
|
|
|
|
# where <parm> indicates the ORCA/C "#pragma debug <parm>" value.
|
|
|
|
#
|
|
|
|
# * To turn on compiler optimizations, use
|
|
|
|
# OPTIMIZE=<parm>
|
|
|
|
# where <parm> indicates the ORCA/C "#pragma optimize <parm>" value.
|
|
|
|
# The default optimization is 72 (0x08=disable fixed parm stack repair;
|
|
|
|
# 0x40=disable var parm stack repair)
|
|
|
|
#
|
|
|
|
# * To set a stack size, use
|
|
|
|
# STACK=<size>
|
|
|
|
# where <size> indicates the ORCA/C "#pragma stacksize <size>" value.
|
1997-09-26 06:11:07 +00:00
|
|
|
# The default size is 1024.
|
1997-09-21 22:28:44 +00:00
|
|
|
#
|
|
|
|
# * To define compiler macros, use
|
|
|
|
# DEFINES=-D<name>[=<value>]
|
|
|
|
#
|
|
|
|
# An example using command-line options to turn on debugging, set the
|
|
|
|
# stack size to 4096, and to set the "__STACK_CHECK__" macro:
|
|
|
|
# dmake DEBUG=25 STACK=4096 DEFINES=-D__STACK_CHECK__
|
|
|
|
|
1997-09-24 06:43:53 +00:00
|
|
|
.INCLUDE: /src/gno/paths.mk
|
|
|
|
.INCLUDE: /src/gno/binconst.mk
|
1997-09-21 22:28:44 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Check for user-specified compile/load options
|
|
|
|
#
|
|
|
|
|
|
|
|
# Was debugging requested?
|
|
|
|
.IF $(DEBUG) != $(NULL)
|
|
|
|
CFLAGS += -G$(DEBUG)
|
|
|
|
.END
|
|
|
|
|
|
|
|
# Was special optimizing requested?
|
1998-02-09 08:45:21 +00:00
|
|
|
OPTIMIZE*= 78
|
1997-09-21 22:28:44 +00:00
|
|
|
|
1998-02-18 18:22:04 +00:00
|
|
|
# Use stack size of 1024 bytes if STACK macro isn't already defined
|
1998-02-09 08:45:21 +00:00
|
|
|
STACK *= 1024
|
1997-09-21 22:28:44 +00:00
|
|
|
|
|
|
|
# Compile and load flags passed to occ
|
|
|
|
# -r: don't create .root file (used on all but main file)
|
|
|
|
CFLAGS += -r -O$(OPTIMIZE) $(DEFINES) -s$(STACK)
|
|
|
|
|
|
|
|
# If installation directories were not set, use defaults
|
1998-02-09 08:45:21 +00:00
|
|
|
BINDIR *= /bin
|
|
|
|
MANDIR *= /usr/man
|
1997-09-21 22:28:44 +00:00
|
|
|
|
|
|
|
RELBIN = $(RELEASE_DIR)$(BINDIR)
|
|
|
|
RELMAN = $(RELEASE_DIR)$(MANDIR)
|
|
|
|
|
1998-02-15 19:44:03 +00:00
|
|
|
.IF $(CUSTOM_RULES) == $(NULL)
|
1997-09-24 06:43:53 +00:00
|
|
|
.INCLUDE: /src/gno/binrules.mk
|
1998-02-15 19:44:03 +00:00
|
|
|
.END
|
1997-09-21 22:28:44 +00:00
|
|
|
|
1997-10-30 04:26:58 +00:00
|
|
|
.IF $(CUSTOM_RELEASE) == $(NULL)
|
|
|
|
.INCLUDE: /src/gno/binrelease.mk
|
|
|
|
.END
|