https://github.com/pauldraper/cs235
Helpful tools for BYU CS 235 projects
https://github.com/pauldraper/cs235
Last synced: about 2 months ago
JSON representation
Helpful tools for BYU CS 235 projects
- Host: GitHub
- URL: https://github.com/pauldraper/cs235
- Owner: pauldraper
- Created: 2013-03-30T22:23:22.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-04-11T21:13:38.000Z (about 13 years ago)
- Last Synced: 2025-02-26T15:14:26.331Z (over 1 year ago)
- Language: Python
- Size: 109 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#CS 235 project utilities
This are tools for build, testing, and submitting CS 235 assignments. There is one directory for each assignment.
The supported targets are:
* `all`: compile
* `clean`: erase built and zipped files
* `memcheck`: run with Valgrind
* `quality`: check code-complexity
* `run`: compile and run
* `submit`: submit code and tests to CS 235 submission site
* `test`: compile and run tests
* `zip`: zip code and tests
##Setup
###Python (only necessary for submission)
```
$ sudo pip install mechanize
```
or without admin rights (e.g. CS open labs)
```
$ echo "export PYTHONPATH=/users/guest/j/johnsmith/lib" >> ~/.bashrc
$ sh .bashrc
$ easy_install --install-dir $PYTHONPATH mechanize
```