71 lines
1.6 KiB
Makefile
71 lines
1.6 KiB
Makefile
#
|
|
# File: Makefile.i686
|
|
# Author: The SRI DECIPHER (TM) System
|
|
# Date: Fri Feb 19 22:45:31 PST 1999
|
|
#
|
|
# Description:
|
|
# Machine dependent compilation options and variable definitions
|
|
# for CYGWIN/i686 platform
|
|
#
|
|
# Copyright (c) 1999-2002 SRI International. All Rights Reserved.
|
|
#
|
|
# $Header: /home/srilm/CVS/srilm/common/Makefile.machine.freebsd,v 1.3 2006/01/05 20:25:44 stolcke Exp $
|
|
#
|
|
|
|
# Use the GNU C compiler.
|
|
GCC_FLAGS = -Wreturn-type -Wimplicit -Wimplicit-int
|
|
CC = gcc $(GCC_FLAGS)
|
|
CXX = g++ $(GCC_FLAGS) -DINSTANTIATE_TEMPLATES
|
|
|
|
# Optional compilation flags.
|
|
OPTIMIZE_FLAGS = -g -O2
|
|
DEBUG_FLAGS = -g -DDEBUG
|
|
PROFILE_FLAGS = -g -pg -O2
|
|
|
|
# Optional linking flags.
|
|
EXPORT_LDFLAGS = -s
|
|
|
|
# Shared compilation flags.
|
|
CFLAGS = $(ADDITIONAL_CFLAGS) $(INCLUDES)
|
|
CXXFLAGS = $(ADDITIONAL_CXXFLAGS) $(INCLUDES)
|
|
|
|
# Shared linking flags.
|
|
LDFLAGS = $(ADDITIONAL_LDFLAGS) -L$(SRILM_LIBDIR)
|
|
|
|
# Other useful compilation flags.
|
|
ADDITIONAL_CFLAGS =
|
|
ADDITIONAL_CXXFLAGS =
|
|
|
|
# Other useful include directories.
|
|
ADDITIONAL_INCLUDES =
|
|
|
|
# Other useful linking flags.
|
|
ADDITIONAL_LDFLAGS =
|
|
|
|
# Other useful libraries.
|
|
ADDITIONAL_LIBRARIES = -lm
|
|
|
|
# run-time linker path flag
|
|
RLD_FLAG = -R
|
|
|
|
# Tcl support (part of cygwin)
|
|
TCL_INCLUDE = -I/usr/local/include/tcl8.3
|
|
TCL_LIBRARY = -L/usr/local/lib -ltcl83
|
|
|
|
# No ranlib
|
|
RANLIB = :
|
|
|
|
# Generate dependencies from source files.
|
|
GEN_DEP = $(CC) $(CFLAGS) -MM
|
|
|
|
GEN_DEP.cc = $(CXX) $(CXXFLAGS) -MM
|
|
|
|
# Run lint.
|
|
LINT = lint
|
|
LINT_FLAGS = -DDEBUG $(CFLAGS)
|
|
|
|
# Location of gawk binary
|
|
GAWK = /usr/bin/gawk
|
|
|
|
|