Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Welcome v0.1.0 |
---|---|
Timelines: | family | ancestors | descendants | both | trunk | SEED_0_1_0 |
Files: | files | file ages | folders |
SHA1: |
42dd6984a4bd4b8b05dfbf0c42fa0df3 |
User & Date: | martin 2013-06-22 01:17:38 |
Context
2013-06-23
| ||
19:40 | Rename read_pair() -> read_list() and simplify. '(foo bar . baz) reads correctly now. check-in: cf389cb16d user: martin tags: trunk | |
2013-06-22
| ||
01:17 | Welcome v0.1.0 check-in: 42dd6984a4 user: martin tags: trunk, SEED_0_1_0 | |
2013-06-18
| ||
06:08 | Lose redundant prototype for vector_to_list check-in: 021b1ebb9e user: martin tags: trunk | |
Changes
Changes to Makefile.
1 2 3 4 5 6 7 | CC=gcc CFLAGS=-Wall -Wextra -pedantic -std=c89 -g -pipe OBJS=display.o env.o eval.o init.o memory.o \ primitives.o read.o seed.o symtab.o types.o | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | CC=gcc CFLAGS=-Wall -Wextra -pedantic -std=c89 -g -pipe OBJS=display.o env.o eval.o init.o memory.o \ primitives.o read.o seed.o symtab.o types.o VERSION="0.1.0" BANNER="Seed $(VERSION)" BIN=seed all: repl test $(BIN): $(OBJS) |
︙ | ︙ |