aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2015-06-08 20:21:01 +1200
committerDavid Phillips <dbphillipsnz@gmail.com>2015-06-08 20:21:01 +1200
commit611ed259391c4c311c214b72a92ce111101a8281 (patch)
tree3990faf893979b9f4ba8f9d29e12eb58d4235e86
parentecfc8ac8c9de37f8f94468d47b573e1326b2d907 (diff)
downloadfractal-gen-611ed259391c4c311c214b72a92ce111101a8281.tar.xz
Fixed build problem
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ae43d5a..2155733 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ symlinks: fractal-gen
ln -sf $< bship-gen
fractal-gen: fractal-gen.o mbrot.o bship.o
- $(CC) -o $@ $? -lm -lpthread
+ $(CC) -o $@ $^ -lm -lpthread
%.o: %.c
$(CC) -c -o $@ $< -Wall -Wextra -Werror