view makefile @ 69:d0ce696786cc

Clean up debug print statements a bit. Fix bug that prevented workers that took no inputs from working. Remove workaround in Array for said bug.
author Mike Pavone <pavone@retrodev.com>
date Wed, 16 Jun 2010 04:36:08 +0000
parents 23dd9c766699
children
line wrap: on
line source

CFLAGS = -DCONSOLE -DSYLLABLE
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)
	g++ -o rhope -lsyllable $(OBJS)

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

%.o:%.cpp
	g++ -DCPLUSPLUS $(CFLAGS) -c $<

clean:
	rm *.o
	rm rhope