diff options
| author | 2024-08-22 20:05:49 -0400 | |
|---|---|---|
| committer | 2024-08-22 20:05:49 -0400 | |
| commit | 45cfd8ff11770f7dcfbb1c0fe4ff1434565d896a (patch) | |
| tree | d1f7439291db49cdabe22fcf80a556e3f95966fa /Makefile | |
add doubly linked lists, tests, minischeme
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..357e144 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +.POSIX: + +miniscm-run-tests: miniscm/scm tests.scm + ./miniscm/scm < tests.scm +miniscm/scm: + c89 -DSYSV -DInitFile=\"miniscm/init.scm\" miniscm/miniscm.c -o miniscm/scm +clean: + rm -f miniscm |
