yasi

Check-in [cddbcd846e]
Login

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

Overview
Comment:Welcome 0.1.2
Timelines: family | ancestors | descendants | both | trunk | SEED_0_1_2
Files: files | file ages | folders
SHA1: cddbcd846e0be26c09aa748c2d042109482345e2
User & Date: martin 2013-06-25 02:45:55
Context
2013-06-26
21:44
Add let/let*/letrec. Much easier with quasiquote. check-in: a1fc67cd62 user: martin tags: trunk, SEED_0_1_3
2013-06-25
02:45
Welcome 0.1.2 check-in: cddbcd846e user: martin tags: trunk, SEED_0_1_2
02:43
Clean up quasiquote check-in: f378eaec7c 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.1"
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.2"
BANNER="Seed $(VERSION)"

BIN=seed

all: repl test

$(BIN): $(OBJS)