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:49:42 -0700 |
commit | bd8d061d0f63158b5b03814d77cb76fdf5a0abad (patch) | |
tree | 9dac6a46874bcc9192770ee305e3a84ca9e86af6 /libaltos | |
parent | 8a19805a6b079450b5afd5fa2334cede8495ae4a (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>
Diffstat (limited to 'libaltos')
-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) |