diff options
author | Keith Packard <keithp@keithp.com> | 2013-05-17 03:27:20 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-05-17 03:51:16 -0700 |
commit | 8d40c37bae0c58037f267e54de40071cd19c931d (patch) | |
tree | e1ed7167492d1b1c0c946c02fd5de874898cdde4 | |
parent | fbe7857e371fa8ffa726fda2b43d4eddd551eaa4 (diff) |
libaltos: Build the linux library targets when doing a 'fat' build
These are necessary for the fat release, so make sure they're built then.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | libaltos/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libaltos/Makefile.am b/libaltos/Makefile.am index b5ab1ddb..41549558 100644 --- a/libaltos/Makefile.am +++ b/libaltos/Makefile.am @@ -42,7 +42,7 @@ MINGCC64=x86_64-w64-mingw32-gcc MINGFLAGS=-Wall -DWINDOWS -DBUILD_DLL -I$(JVM_INCLUDE) MINGLIBS=-lsetupapi -fat: altos.dll altos64.dll +fat: all altos.dll altos64.dll altos.dll: $(libaltos_la_SOURCES) $(MINGCC32) -o $@ $(MINGFLAGS) -shared $(libaltos_la_SOURCES) $(MINGLIBS) |