dos3d
changeset 24:698c4d07702d tip
fixed the linux makefile
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Tue, 20 Jun 2017 21:55:49 +0300 |
parents | f2c2e45e8edd |
children | |
files | Makefile |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line diff
1.1 --- a/Makefile Sat Sep 21 18:22:11 2013 +0300 1.2 +++ b/Makefile Tue Jun 20 21:55:49 2017 +0300 1.3 @@ -8,7 +8,7 @@ 1.4 1.5 CC = gcc 1.6 CFLAGS = -pedantic -Wall -g `pkg-config --cflags sdl` -Isrc -Idosemu 1.7 -LDFLAGS = `pkg-config --libs sdl` 1.8 +LDFLAGS = `pkg-config --libs sdl` -lm 1.9 1.10 $(bin): $(obj) 1.11 $(CC) -o $@ $(obj) $(LDFLAGS)