source: trunk/jrun/Makefile @ 1184

Revision 554, 357 bytes checked in by cdleonard@…, 5 years ago (diff)

Commited some eval fixes that were only in the live copy.

  • Property svn:executable set to *
Line 
1# Makefile, for the lazy among you.
2all: jrun
3
4.PHONY: all test clean
5
6force:
7
8test: jrun force
9        ./run-tests.php
10
11clean: force
12        rm -rf jrun jrun.o options.o names.o
13
14jrun: jrun.c jrun.h options.c names.c
15        gcc -Wall -O2 jrun.c -c -o jrun.o
16        gcc -Wall -O2 options.c -c -o options.o
17        gcc -Wall -O2 names.c -c -o names.o
18        gcc -o jrun jrun.o options.o names.o
19       
Note: See TracBrowser for help on using the repository browser.