diff options
author | Simon Howard | 2007-02-24 02:19:45 +0000 |
---|---|---|
committer | Simon Howard | 2007-02-24 02:19:45 +0000 |
commit | 32762cc65dffd9c9e0733c968d609613b7e0e5a5 (patch) | |
tree | 0dfad67ab4f8442eb25c68ef350e081d919f0ab9 /textscreen/examples/Makefile.am | |
parent | a85cd11ee1b220c6928eac077e0fa9ec6abab42a (diff) | |
download | chocolate-doom-32762cc65dffd9c9e0733c968d609613b7e0e5a5.tar.gz chocolate-doom-32762cc65dffd9c9e0733c968d609613b7e0e5a5.tar.bz2 chocolate-doom-32762cc65dffd9c9e0733c968d609613b7e0e5a5.zip |
Fix library ordering for libtextscreen.a; fixes windows compile.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 841
Diffstat (limited to 'textscreen/examples/Makefile.am')
-rw-r--r-- | textscreen/examples/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textscreen/examples/Makefile.am b/textscreen/examples/Makefile.am index 001416c5..f6d247ea 100644 --- a/textscreen/examples/Makefile.am +++ b/textscreen/examples/Makefile.am @@ -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 |