diff options
author | kramm <kramm> | 2002-01-13 19:01:37 +0000 |
---|---|---|
committer | kramm <kramm> | 2002-01-13 19:01:37 +0000 |
commit | 3a0a8b6c989904a4f3ac46738cc7a6d4c19f8a83 (patch) | |
tree | d0847cd8bc7e192240b9c711b0acc7455067d26f /swfs | |
parent | bee56ee5d28188f2abb09c50c0624f7cc4f4098a (diff) |
link against lib/librfxswf.a, not lib/rfxswf.o.
Diffstat (limited to 'swfs')
-rw-r--r-- | swfs/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/swfs/Makefile.in b/swfs/Makefile.in index 629e93b0..1f614f7d 100644 --- a/swfs/Makefile.in +++ b/swfs/Makefile.in @@ -74,9 +74,9 @@ WORDS_BIGENDIAN = @WORDS_BIGENDIAN@ bin_PROGRAMS = simple_viewer PreLoaderTemplate LDADD = simple_viewer_SOURCES = simple_viewer.c -simple_viewer_LDADD = ../lib/rfxswf.o +simple_viewer_LDADD = ../lib/librfxswf.a PreLoaderTemplate_SOURCES = PreLoaderTemplate.c -PreLoaderTemplate_LDADD = ../lib/rfxswf.o +PreLoaderTemplate_LDADD = ../lib/librfxswf.a INCLUDES = -I../lib pkgdata_DATA = simple_viewer.swf PreLoaderTemplate.swf swft_loader.swf tessel_loader.swf mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs @@ -91,10 +91,10 @@ CPPFLAGS = @CPPFLAGS@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ simple_viewer_OBJECTS = simple_viewer.o -simple_viewer_DEPENDENCIES = ../lib/rfxswf.o +simple_viewer_DEPENDENCIES = ../lib/librfxswf.a simple_viewer_LDFLAGS = PreLoaderTemplate_OBJECTS = PreLoaderTemplate.o -PreLoaderTemplate_DEPENDENCIES = ../lib/rfxswf.o +PreLoaderTemplate_DEPENDENCIES = ../lib/librfxswf.a PreLoaderTemplate_LDFLAGS = CFLAGS = @CFLAGS@ COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) |