pygame is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

pygame / pygame http://pygame.org/

Clone this repository (size: 15.4 MB): HTTPS / SSH
hg clone https://bitbucket.org/pygame/pygame
hg clone ssh://hg@bitbucket.org/pygame/pygame

pygame / Makefile

Branch
pygame-ftmod
#fake Makefile for pygame, to support the common
# ./configure;make;make install

PYTHON = python

build: Setup setup.py
        $(PYTHON) setup.py build

install: Setup setup.py
        $(PYTHON) setup.py install

Setup:
        $(PYTHON) configure.py

check tests:
        $(PYTHON) run_tests.py

docs:   install
        cd docs/utils
        $(PYTHON) makedocs.py

clean:
        rm -rf build dist
        rm -f lib/*~ src/*~ test/*~