Fix library ordering for libtextscreen.a; fixes windows compile.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 841
This commit is contained in:
parent
a85cd11ee1
commit
32762cc65d
2 changed files with 3 additions and 3 deletions
|
|
@ -5,7 +5,7 @@ AM_CFLAGS = @SDL_CFLAGS@ -I../textscreen -I../src -DINSTALL_DIR="\"$(gamesdir)\"
|
|||
|
||||
games_PROGRAMS = chocolate-setup
|
||||
|
||||
chocolate_setup_LDADD = @LDFLAGS@ @SDL_LIBS@ ../textscreen/libtextscreen.a
|
||||
chocolate_setup_LDADD = ../textscreen/libtextscreen.a @LDFLAGS@ @SDL_LIBS@
|
||||
SOURCE_FILES = \
|
||||
compatibility.c compatibility.h \
|
||||
configfile.c configfile.h \
|
||||
|
|
|
|||
|
|
@ -3,9 +3,9 @@ AM_CFLAGS = @SDL_CFLAGS@ -I.. -I../../src
|
|||
|
||||
noinst_PROGRAMS=guitest calculator
|
||||
|
||||
guitest_LDADD = @LDFLAGS@ @SDL_LIBS@ ../libtextscreen.a
|
||||
guitest_LDADD = ../libtextscreen.a @LDFLAGS@ @SDL_LIBS@
|
||||
guitest_SOURCES = guitest.c
|
||||
|
||||
calculator_LDADD = @LDFLAGS@ @SDL_LIBS@ ../libtextscreen.a
|
||||
calculator_LDADD = ../libtextscreen.a @LDFLAGS@ @SDL_LIBS@
|
||||
calculator_SOURCES = calculator.c
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue