mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 16:51:06 -07:00
This was achieved by partially undoing changelist 24817, including an accidental corruption of eventgen.pl. Copied from Perforce Change: 24877 ServerID: perforce.ravenbrook.com
25 lines
707 B
Text
25 lines
707 B
Text
# impl.gmk.lc: GNUMAKEFILE FRAGMENT FOR LCC
|
|
#
|
|
# $Id$
|
|
# $HopeName: MMsrc!lc.gmk(trunk.4) $
|
|
# Copyright (c) 2001 Ravenbrook Limited.
|
|
#
|
|
# This file is included by platform makefiles that use the LCC
|
|
# compiler. It defines the compiler specific variables that the
|
|
# common makefile fragment (impl.gmk.comm) requires.
|
|
#
|
|
# .optimize.noflags: lcc does some minimal amount of optimization all
|
|
# the time and ignores the -O flag. Hence the empty *OPT* macros.
|
|
|
|
# We need a symbol for a non-empty definition with empty value
|
|
ifdef MPS_EMPTY
|
|
error "lc.gmk: MPS_EMPTY defined"
|
|
endif
|
|
|
|
CC = lcc
|
|
CFLAGSCOMPILER = -I/usr/include
|
|
CFLAGSDEBUG = -g
|
|
CFLAGSOPT = $(MPS_EMPTY)
|
|
CFLAGSOPTNODEBUG = $(MPS_EMPTY)
|
|
|
|
include comm.gmk
|