Code Search for Developers
 
 
  

Makefile from matplotlib at Krugle


Show Makefile syntax highlighted

# Makefile for matplotlib

PYTHON = /usr/bin/python2.5
VERSION = `${PYTHON} setup.py --version`

DISTFILES = API_CHANGES KNOWN_BUGS INSTALL README TODO license	\
	CHANGELOG Makefile INTERACTIVE			\
	MANIFEST.in lib lib/matplotlib lib/dateutil lib/pytz examples setup.py

RELEASE = matplotlib-${VERSION}


clean: 
	${PYTHON} setup.py clean;\
	rm -f *.png *.ps *.eps *.svg *.jpg
	find . -name "_tmp*.py" | xargs rm -f;\
	find . \( -name "*~" -o -name "*.pyc" \) | xargs rm -f;\
	find examples \( -name "*.svg" -o -name "*.png" -o -name "*.ps"  -o -name "*.eps" -o -name "*.tar" -o  -name "*.gz" -o -name "*.log" -o -name "*.aux" -o -name "*.tex" \) | xargs rm -f
	find unit \( -name "*.png" -o -name "*.ps"  -o -name "*.eps" \) | xargs rm -f
	find . \( -name "#*" -o -name ".#*" -o -name ".*~" -o -name "*~" \) | xargs rm -f


release: ${DISTFILES}
	rm -f MANIFEST;\
	${PYTHON} license.py ${VERSION} license/LICENSE;\
	${PYTHON} setup.py sdist --formats=gztar,zip;

pyback: 
	tar cvfz pyback.tar.gz *.py lib src examples/*.py  unit/*.py 










See more files for this project here

matplotlib

Matplotlib is a pure python plotting library with the goal of making\r\npublication quality plots using a syntax familiar to matlab users. \r\nThe library uses Numeric for handling large\r\ndata sets and supports a variety of output backends

Project homepage: http://sourceforge.net/projects/matplotlib
Programming language(s): C,C++,Python
License: other

  CXX/
    Config.hxx
    Exception.hxx
    Extensions.hxx
    IndirectPythonInterface.cxx
    IndirectPythonInterface.hxx
    Objects.hxx
    Version.hxx
    WrapPython.h
    cxx_extensions.cxx
    cxxextensions.c
    cxxsupport.cxx
  agg23/
    font_freetype/
      Makefile.am
      agg_font_freetype.cpp
      agg_font_freetype.h
    font_win32_tt/
      agg_font_win32_tt.cpp
      agg_font_win32_tt.h
    include/
      ctrl/
      platform/
      util/
      Makefile.am
      agg_alpha_mask_u8.h
      agg_arc.h
      agg_array.h
      agg_arrowhead.h
      agg_basics.h
      agg_bezier_arc.h
      agg_bitset_iterator.h
      agg_bounding_rect.h
      agg_bspline.h
      agg_clip_liang_barsky.h
      agg_color_gray.h
      agg_color_rgba.h
      agg_config.h
      agg_conv_adaptor_vcgen.h
      agg_conv_adaptor_vpgen.h
      agg_conv_bspline.h
      agg_conv_clip_polygon.h
      agg_conv_clip_polyline.h
      agg_conv_close_polygon.h
      agg_conv_concat.h
      agg_conv_contour.h
      agg_conv_curve.h
      agg_conv_dash.h
      agg_conv_gpc.h
      agg_conv_marker.h
      agg_conv_marker_adaptor.h
      agg_conv_segmentator.h
      agg_conv_shorten_path.h
      agg_conv_smooth_poly1.h
      agg_conv_stroke.h
      agg_conv_transform.h
      agg_conv_unclose_polygon.h
      agg_curves.h
      agg_dda_line.h
      agg_ellipse.h
      agg_ellipse_bresenham.h
      agg_embedded_raster_fonts.h
      agg_font_cache_manager.h
      agg_gamma_functions.h
      agg_gamma_lut.h
      agg_glyph_raster_bin.h
      agg_gsv_text.h
      agg_image_filters.h
      agg_line_aa_basics.h
      agg_math.h
      agg_math_stroke.h
      agg_path_storage.h
      agg_path_storage_integer.h
      agg_pattern_filters_rgba.h
      agg_pixfmt_amask_adaptor.h
      agg_pixfmt_gray.h
      agg_pixfmt_rgb.h
      agg_pixfmt_rgb_packed.h
      agg_pixfmt_rgba.h
      agg_rasterizer_outline.h
      agg_rasterizer_outline_aa.h
      agg_rasterizer_scanline_aa.h
      agg_render_scanlines.h
      agg_renderer_base.h
      agg_renderer_markers.h
    src/
    svg/
  examples/
  lib/
  license/
  mpl1/
  sandbox/
  src/
  swig/
  ttconv/
  unit/
  API_CHANGES
  CHANGELOG
  CODING_GUIDE
  DEVNOTES
  INSTALL
  INTERACTIVE
  KNOWN_BUGS
  MANIFEST
  MANIFEST.in
  Makefile
  README
  SEGFAULTS
  TODO
  __init__.py
  boilerplate.py
  license.py
  makeswig.py
  matplotlibrc.template
  setup.cfg
  setup.py
  setupegg.py
  setupext.py