diff options
author | Lauri Leukkunen <lle@rahina.org> | 2009-01-09 02:04:20 +0200 |
---|---|---|
committer | Lauri Leukkunen <lle@rahina.org> | 2009-01-10 01:12:43 +0200 |
commit | b57596d84e964e44bd42ce4b6a447c296392cfcd (patch) | |
tree | 540964976df35d26c951e25c64f3c698e0da249c /utils/Makefile | |
parent | f5e1929e764965d8ef0fb951a825b9cd74bcf0cd (diff) |
Builds for OS X 10.4 with these changes
A bit more ifdef __APPLE__ testing was needed.
Signed-off-by: Lauri Leukkunen <lle@rahina.org>
Diffstat (limited to 'utils/Makefile')
-rw-r--r-- | utils/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/Makefile b/utils/Makefile index 3a4a99f..cf9b6c4 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -6,7 +6,7 @@ $(D)/sb2-show: CFLAGS := $(CFLAGS) -Wall -W -Werror \ -I$(SRCDIR)/include $(D)/sb2-show.o: preload/exported.h -$(D)/sb2-show: preload/libsb2.${SHLIBEXT} $(D)/sb2-show.o +$(D)/sb2-show: preload/libsb2.$(SHLIBEXT) $(D)/sb2-show.o $(MKOUTPUTDIR) $(P)LD $(Q)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ @@ -25,7 +25,7 @@ $(D)/sb2-interp-wrapper: CFLAGS := $(CFLAGS) -Wall -W -Werror \ -I$(SRCDIR)/preload -Ipreload/ $(PROTOTYPEWARNINGS) \ -I$(SRCDIR)/include -$(D)/sb2-interp-wrapper: preload/libsb2.so $(D)/sb2-interp-wrapper.o +$(D)/sb2-interp-wrapper: preload/libsb2.$(SHLIBEXT) $(D)/sb2-interp-wrapper.o $(MKOUTPUTDIR) $(P)LD $(Q)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ -ldl |