# HG changeset patch # User Mike Pavone # Date 1259642828 18000 # Node ID 6420c35edb4373cd8f1b1d08c262f9db7b09defa # Parent a7c79ac22efc11cd36a3ca6a739d627540c4f50c Fixed Linux makefile diff -r a7c79ac22efc -r 6420c35edb43 makefile.linux --- a/makefile.linux Sat Oct 31 21:28:28 2009 -0400 +++ b/makefile.linux Mon Nov 30 23:47:08 2009 -0500 @@ -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 $<