diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2015-06-02 19:31:06 +0200 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2015-06-02 19:31:06 +0200 |
commit | 9b783b53ee8543f7922b3adc496a04e9486983c6 (patch) | |
tree | 562e890f5cc294f9e6ebc6a3cc2bfcdbb5ba8d79 | |
parent | 6fcaf93aeff863d3998c175efb0359fb2ee7ec84 (diff) |
Make linker use lm after it is used
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 | ||
27 | bin/convert_coords: src/export/convert_coords.c | 27 | bin/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 |
31 | clean: | 31 | clean: |