view makefile.linux @ 136:fc3815b7462f

Javascript backend now produces working code for some simple examples, still more of the standard lib that needs to be ported.
author Mike Pavone <pavone@retrodev.com>
date Sun, 14 Nov 2010 23:07:55 -0500
parents 6420c35edb43
children
line wrap: on
line source

CFLAGS = -O2 -DCONSOLE -DUSE_OS_PRIMITIVES
OBJS = datum.o dict.o file.o interp.o list.o net.o number.o parser.o saveload.o string.o visuality_cmd.o worker.o vis_threading.o mt19937ar.o buffer.o blueprint.o

rhope: $(OBJS)
	$(CC) -g -o rhope -lpthread -lm $(OBJS)

%.o:%.c
	$(CC) $(CFLAGS) -g -c $<

clean:
	rm *.o
	rm rhope