mirror of
https://github.com/chocolate-doom/joytest.git
synced 2024-11-21 11:51:02 +00:00
Fix ordering of LDFLAGS.
This commit is contained in:
parent
17204bbf73
commit
da3b94dd25
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -3,5 +3,5 @@ CFLAGS = $(shell sdl-config --cflags)
|
|||
LDFLAGS = $(shell sdl-config --libs)
|
||||
|
||||
joytest : joytest.c
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) $< -o $@
|
||||
$(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
|
||||
|
||||
|
|
Loading…
Reference in a new issue