最新的版本ACE-5.6.8,刚从外文网上搬下,与大家分享.
源代码在线查看: executable.generic.pre.rules
# file : BuildRules/Executable.generic.pre.rules
# author : Boris Kolpackov
# copyright : Copyright (c) 2002-2003 Boris Kolpackov
# license : http://kolpackov.net/license.html
# Forces make to delete targets whos rebuild commands failed but
# updated the target.
.DELETE_ON_ERROR:
# Empties the suffix list for which old-fassion implicit rules would
# be used. The net effect is that all predefined implicit rules are
# disabled now.
.SUFFIXES:
CXX ?= g++
CXX_DEP ?= $(CXX) -M
CXX_PREPROCESS_FLAGS :=
CXX_COMPILE_FLAGS := -Wall
CXX_LINK_FLAGS :=
CXX_LINK_LIBS :=
MODULE_PREFIX :=
MODULE_SUFFIX :=
# $Id: Executable.generic.pre.rules 80826 2008-03-04 14:51:23Z wotte $