summaryrefslogtreecommitdiff
path: root/contrib/utility/BuildRules/Archive.gcc.pre.rules
blob: fbeb0329055f91645aac79ec58d42f6887148375 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# file      : BuildRules/Archive.gcc.pre.rules
# author    : Boris Kolpackov <boris@kolpackov.net>
# 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        :=

AR                   ?= ar
AR_FLAGS             := -rc

MODULE_PREFIX        := lib
MODULE_SUFFIX        := .a
# $Id$