diff options
author | David Phillips <dbphillipsnz@gmail.com> | 2015-06-08 20:21:01 +1200 |
---|---|---|
committer | David Phillips <dbphillipsnz@gmail.com> | 2015-06-08 20:21:01 +1200 |
commit | 611ed259391c4c311c214b72a92ce111101a8281 (patch) | |
tree | 3990faf893979b9f4ba8f9d29e12eb58d4235e86 /Makefile | |
parent | ecfc8ac8c9de37f8f94468d47b573e1326b2d907 (diff) | |
download | fractal-gen-611ed259391c4c311c214b72a92ce111101a8281.tar.xz |
Fixed build problem
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |