1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-08 20:50:52 -08:00
emacs/mps/code/i6cc.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

32 lines
1.1 KiB
Text

# impl.gmk.ic: GNUMAKEFILE FRAGMENT FOR IRIX 6 CC (N32 or N64 ABI)
#
# $Id$
# $HopeName: MMsrc!i6cc.gmk(trunk.5) $
# Copyright (c) 2001 Ravenbrook Limited.
#
# This file is included by platform makefiles that use the IRIX 6 CC
# compiler. It defines the compiler specific variables that the
# common makefile fragment (impl.gmk.comm) requires.
CC = cc
# suppress error(1174): function "foo" was declared but never referenced
# because it happens with vfork in <unistd.h> included from vmi5.c
# suppress error(1196): function declared implicitly
# because it happens with __vfork in <unistd.h> included from vmi5.c
# suppress remark(1209): 'controlling expression is constant'
# because it occurs in 'while(0)' and statically determined checks
# suppress remark(1552): 'variable "foo" was set but never used'
# (e.g. variables only used in asserts)
# can't use -pedantic because Irix header files have #ident
CFLAGSCOMPILER = -ansi -fullwarn -w2 -diag_error 1000-9999 \
-diag_suppress 1174,1196,1209,1552
CFLAGSDEBUG = -g
CFLAGSOPT = -O -g3
CFLAGSOPTNODEBUG = -O
include comm.gmk