summaryrefslogtreecommitdiff
path: root/sim/src/README
blob: 4bb1713bd0af2f3fe32f5e3b737ee0f72267d332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 Copyright 2004-2006 Nanorex, Inc.  See LICENSE file for details. 
# README file for sim/src directory.
# $Id$
# [initial draft by bruce 051230, very incomplete]

To remake the standalone simulator:
  make clean # this doesn't yet remove the python-or-perl-produced source files
  make

To remake the Pyrex extension:
  make clean # might not clean enough to force this remake; try touching *.pyx
  make pyx

To test the Pyrex extension, see its module docstring in sim.pyx:

  python -c "import sim; sim.test()"

For other info which might or might not be more up-to-date than this,
see the wiki, searching for Simulator, Pyrex, Windows.
[We can add the URLs to this file sometime.]

# end