yasi

Check-in [be53e63c37]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Welcome 0.1.4
Timelines: family | ancestors | descendants | both | trunk | SEED_O_1_4
Files: files | file ages | folders
SHA1: be53e63c3744a8dfa7c337773a46f43ae852850b
User & Date: martin 2013-07-06 15:57:49
Context
2013-07-06
18:31
Simplify vector_to_list; move pred_* to primitives.c, rename them to prim_*_p, specials renamed prim_* -> spec_*, rename any other primitives lacking prim_ prefix; Add type checking macros in types.h; Add more type assertions to primitives. check-in: 29380c5fc8 user: martin tags: trunk
15:57
Welcome 0.1.4 check-in: be53e63c37 user: martin tags: trunk, SEED_O_1_4
15:55
Gensym uses rand() and takes an optional symbol or string arg. check-in: f6c5acdd6d user: martin tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to Makefile.

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.3"
BANNER="Seed $(VERSION)"

BIN=seed

all: repl test

$(BIN): $(OBJS)







|







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.4"
BANNER="Seed $(VERSION)"

BIN=seed

all: repl test

$(BIN): $(OBJS)