diff options
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 |