summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2015-06-02 19:31:06 +0200
committerDirk Engling <erdgeist@erdgeist.org>2015-06-02 19:31:06 +0200
commit9b783b53ee8543f7922b3adc496a04e9486983c6 (patch)
tree562e890f5cc294f9e6ebc6a3cc2bfcdbb5ba8d79
parent6fcaf93aeff863d3998c175efb0359fb2ee7ec84 (diff)
Make linker use lm after it is used
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 22a1693..3e64576 100644
--- a/Makefile
+++ b/Makefile
@@ -25,7 +25,7 @@ bin/map_coords: src/export/map_coords.c src/export/mystdlib.c
25 $(CC) $(CFLAGS) -o $@ src/export/map_coords.c src/export/mystdlib.c 25 $(CC) $(CFLAGS) -o $@ src/export/map_coords.c src/export/mystdlib.c
26 26
27bin/convert_coords: src/export/convert_coords.c 27bin/convert_coords: src/export/convert_coords.c
28 $(CC) $(CFLAGS) -o $@ -lm src/export/convert_coords.c 28 $(CC) $(CFLAGS) -o $@ src/export/convert_coords.c -lm
29 29
30.PHONY: clean 30.PHONY: clean
31clean: 31clean: