~ubuntu-branches/ubuntu/maverick/aspectc++/maverick

« back to all changes in this revision

Viewing changes to Puma/vars.mk

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-04-10 17:40:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080410174052-xdnsm7oi8hauyyf1
Tags: 1.0pre4~svn.20080409+dfsg-3
Fix another missing include, this time in Ag++/StdSystem.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
else
24
24
 
25
 
CXX := g++
26
 
CC  := gcc
27
 
AR  := ar
 
25
CXX ?= g++
 
26
CC  ?= gcc
 
27
AR  ?= ar
28
28
 
29
29
endif
30
30
 
32
32
# if this is a release build, set the appropriate (specific) flags
33
33
ifeq ($(RELEASE),debug)
34
34
 
35
 
CFLAGS += -g
 
35
CFLAGS := -O2 -g
36
36
 
37
37
else
38
38
 
39
 
CFLAGS   += -O2
 
39
CFLAGS   ?= -O2 -g
40
40
CPPFLAGS += -DNDEBUG
41
41
 
42
42
endif