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

« back to all changes in this revision

Viewing changes to AspectC++/Makefile

  • 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:
31
31
ifneq ($(SHARED),)
32
32
        LDFLAGS += -Wl,-Bdynamic
33
33
endif
 
34
else
 
35
        LDFLAGS += -L$(PUMA)/lib/$(TARGET) -lPuma
34
36
endif
35
37
 
36
38
LDFLAGS += $(LIBXML2_LIB)
82
84
MAKE ?= make
83
85
 
84
86
# ac++ settings for tests
85
 
ACFLAGS := -v 9
 
87
ACFLAGS := -k -v 9
86
88
 
87
89
ACEXAMPLES = FigureObserver Instances Trace CFlow ID Action Cache IconCache \
88
90
             Order
111
113
        @echo Making it clean.
112
114
        @rm -rf  core core.* *~ $(PROG) $(OBJECTDIR) $(DEPDIR) $(ERROR_FILE)
113
115
 
 
116
cleanall:       doxygen-clean clean
 
117
 
114
118
dirs: $(DIRS)
115
119
 
116
120
test: $(PROG)$(EXT) testall
123
127
        @rm -rf examples/*-out
124
128
        @rm -rf examples/*.acp
125
129
 
126
 
.PHONY: all test  clean  example  examplerun  exampleclean \
127
 
        showtarget
 
130
doxygen:
 
131
        @echo "Making AspectC++ documentation with doxygen"
 
132
        @doxygen doc/doxygen.conf && echo "=> see doc/doxygen/html/index.html"
 
133
 
 
134
doxygen-clean:
 
135
        @rm -rf doc/doxygen
 
136
 
 
137
.PHONY: all test clean cleanall example examplerun exampleclean \
 
138
        showtarget doxygen doxygen-clean
128
139
 
129
140
 
130
141