diff makefile.linux @ 63:04baa003de5a

Merged latest changes with better C branch
author Mike Pavone <pavone@retrodev.com>
date Wed, 05 May 2010 22:12:23 -0400
parents 6420c35edb43
children
line wrap: on
line diff
--- a/makefile.linux	Sat Oct 10 16:43:37 2009 -0400
+++ b/makefile.linux	Wed May 05 22:12:23 2010 -0400
@@ -2,7 +2,7 @@
 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 $(OBJS)
+	$(CC) -g -o rhope -lpthread -lm $(OBJS)
 
 %.o:%.c
 	$(CC) $(CFLAGS) -g -c $<