diff options
author | Twinaphex | 2014-07-14 06:18:50 +0200 |
---|---|---|
committer | Twinaphex | 2014-07-14 06:18:50 +0200 |
commit | 1cf2a0cbfe41effe7db6966eb3a8a446785b041f (patch) | |
tree | 5b1f520086dd997ccbfc2bdccbe63f4550d8438b /x86 | |
parent | a8ff99c68bb1f0a09ab494c3b0e91bdc05b57146 (diff) | |
parent | 0ccab798847ee0854a66a4b8a2aee56fce78c324 (diff) | |
download | picogpsp-1cf2a0cbfe41effe7db6966eb3a8a446785b041f.tar.gz picogpsp-1cf2a0cbfe41effe7db6966eb3a8a446785b041f.tar.bz2 picogpsp-1cf2a0cbfe41effe7db6966eb3a8a446785b041f.zip |
Merge pull request #1 from aliaspider/master
fix x86 build
Diffstat (limited to 'x86')
-rw-r--r-- | x86/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x86/Makefile b/x86/Makefile index c1d772b..276996d 100644 --- a/x86/Makefile +++ b/x86/Makefile @@ -17,7 +17,7 @@ BIN ?= gpsp.exe VPATH += .. CFLAGS += -DPC_BUILD -Wall -m32 INCLUDES = -I${PREFIX}/include `sdl-config --cflags` -LIBS = -L${PREFIX}/lib `sdl-config --libs` -mconsole -lz -m32 +LIBS = -L${PREFIX}/lib `sdl-config --libs` -lz -m32 # Compilation: |