diff options
author | Keith Packard <keithp@keithp.com> | 2010-08-29 21:43:46 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-08-29 21:43:46 -0700 |
commit | 6527357d1f0e94faf9e7dacac10a39875131be7c (patch) | |
tree | 96208a7bac518360a4c16b1d634357b4a0da7056 | |
parent | b7fa1ea3338f63b8edcf8aacccb5e519ca0b213f (diff) |
libaltos: Missing OS_LDFLAGS on cjnitest build
-rw-r--r-- | ao-tools/libaltos/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ao-tools/libaltos/Makefile b/ao-tools/libaltos/Makefile index cd96fd5f..f336f22f 100644 --- a/ao-tools/libaltos/Makefile +++ b/ao-tools/libaltos/Makefile @@ -96,8 +96,8 @@ SRCS = libaltos.c $(SWIG_WRAP) OBJS = $(SRCS:%.c=%.o) LIBS = $(DARWIN_LIBS) -$(CJNITEST): cjnitest.o $(OBJS) - cc -o $@ $(CFLAGS) cjnitest.o $(OBJS) $(LIBS) +$(CJNITEST): cjnitest.o $(LIBNAME) + cc -o $@ $(CFLAGS) cjnitest.o $(OBJS) $(LIBNAME) $(LIBS) $(OS_LDFLAGS) $(LIBNAME): $(OBJS) gcc -shared $(CFLAGS) -o $@ $(OBJS) $(LIBS) $(LDFLAGS) |