1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-30 09:00:31 -08:00
emacs/mps/code/dc.gmk
Richard Brooksby 3d5e2ca85f Adding hopenames back into the master sources, so that they can be included in the union sources along with the id keywords.
This was achieved by partially undoing changelist 24817, including an accidental corruption of eventgen.pl.

Copied from Perforce
 Change: 24877
 ServerID: perforce.ravenbrook.com
2001-12-06 18:14:02 +00:00

28 lines
785 B
Text

# impl.gmk.dc: GNUMAKEFILE FRAGMENT FOR DIGITAL C COMPILER (DEC UNIX/OSF)
#
# $Id$
# $HopeName: MMsrc!dc.gmk(trunk.3) $
# Copyright (c) 2001 Ravenbrook Limited.
#
# See design.buildsys.unix
#
# This file is included by platform makefiles that use the Digital C
# compiler.
#
# Options are derived from man cc on schiele
#
# There is a potentially useful option -check
# Unfortunately it produces warnings about non casting printf to void
# and bogus warnings about non-void functions not having a return statement
# as the last statement. We would need to cleam our code in order to use
# the option.
CC = cc
CFLAGSCOMPILER = -std1 -w2 -warnprotos -portable -readonly_strings
CFLAGSDEBUG = -g2
CFLAGSOPT = -O2 -g3
CFLAGSOPTNODEBUG = -O2
# -M for a dependency file
include comm.gmk