~ubuntu-branches/ubuntu/lucid/agg/lucid-proposed

« back to all changes in this revision

Viewing changes to src/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2005-11-29 02:02:41 UTC
  • Revision ID: james.westby@ubuntu.com-20051129020241-pmlxls0x6j2qv3nm
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include ../Makefile.in.$(shell uname)
 
2
 
 
3
CXXFLAGS= $(AGGCXXFLAGS) -I../include -L./
 
4
 
 
5
SRC_CXX=\
 
6
agg_arc.cpp \
 
7
agg_arrowhead.cpp \
 
8
agg_bezier_arc.cpp \
 
9
agg_bspline.cpp \
 
10
agg_curves.cpp \
 
11
agg_vcgen_contour.cpp \
 
12
agg_vcgen_dash.cpp \
 
13
agg_vcgen_markers_term.cpp \
 
14
agg_vcgen_smooth_poly1.cpp \
 
15
agg_vcgen_stroke.cpp \
 
16
agg_vcgen_bspline.cpp \
 
17
agg_gsv_text.cpp \
 
18
agg_image_filters.cpp \
 
19
agg_path_storage.cpp \
 
20
agg_rasterizer_scanline_aa.cpp \
 
21
agg_line_aa_basics.cpp \
 
22
agg_line_profile_aa.cpp \
 
23
agg_rounded_rect.cpp \
 
24
agg_sqrt_tables.cpp \
 
25
agg_embedded_raster_fonts.cpp \
 
26
agg_trans_affine.cpp \
 
27
agg_trans_warp_magnifier.cpp \
 
28
agg_trans_single_path.cpp \
 
29
agg_trans_double_path.cpp \
 
30
agg_vpgen_clip_polygon.cpp \
 
31
agg_vpgen_clip_polyline.cpp \
 
32
agg_vpgen_segmentator.cpp \
 
33
ctrl/agg_cbox_ctrl.cpp \
 
34
ctrl/agg_gamma_ctrl.cpp \
 
35
ctrl/agg_gamma_spline.cpp \
 
36
ctrl/agg_rbox_ctrl.cpp \
 
37
ctrl/agg_slider_ctrl.cpp \
 
38
ctrl/agg_spline_ctrl.cpp \
 
39
ctrl/agg_scale_ctrl.cpp \
 
40
ctrl/agg_polygon_ctrl.cpp \
 
41
ctrl/agg_bezier_ctrl.cpp
 
42
 
 
43
SRC_C=\
 
44
../gpc/gpc.c
 
45
 
 
46
 
 
47
OBJ=$(SRC_CXX:.cpp=.o) $(SRC_C:.c=.o)
 
48
 
 
49
all:    $(OBJ)
 
50
        $(LIB) libagg.a $(OBJ) 
 
51
 
 
52
clean:
 
53
        rm -f *.o *.a ctrl/*.o ../gpc/*.o
 
54
        rm -rf SunWS_cache
 
55
        rm -rf ctrl/SunWS_cache
 
56
 
 
57
%.o: %.cpp
 
58
        $(CXX) -c $(CXXFLAGS) $*.cpp -o $@
 
59
 
 
60
%.o: %.c
 
61
        $(C) -c $(CXXFLAGS) $*.c -o $@