view makefile.osx @ 75:0083b2f7b3c7

Partially working implementation of List. Modified build scripts to allow use of other compilers. Fixed some bugs involving method implementations on different types returning different numbers of outputs. Added Fold to the 'builtins' in the comipler.
author Mike Pavone <pavone@retrodev.com>
date Tue, 06 Jul 2010 07:52:59 -0400
parents 76568becd6d6
children
line wrap: on
line source

CFLAGS = -O2 -force_cpusubtype_ALL -mmacosx-version-min=10.4 -arch i386 -arch ppc -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 mt19937ar.o buffer.o blueprint.o

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

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

clean:
	rm *.o
	rm rhope