From: Niels Möller Date: Fri, 25 Nov 2005 18:47:33 +0000 (+0100) Subject: * Makefile.in (aesdata, desdata, shadata): Use explicit rules for X-Git-Tag: nettle_1.14_release_20051205~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=04186b8eb2aefa0439f0da776fb4770527956914;p=thirdparty%2Fnettle.git * Makefile.in (aesdata, desdata, shadata): Use explicit rules for executables. Rev: src/nettle/Makefile.in:1.30 --- diff --git a/Makefile.in b/Makefile.in index 667af824..75d47232 100644 --- a/Makefile.in +++ b/Makefile.in @@ -131,11 +131,18 @@ $(SHLIBFORLINK): $(nettle_PURE_OBJS) $(COMPILE) $(SHLIBCFLAGS) -c $< -o $@ \ && $(DEP_PROCESS) -.$(OBJEXT)$(EXEEXT): - $(LINK) $< $(LIBS) -o $@ +# For Solaris and BSD make, we have to use an explicit rule for each executable +aesdata$(EXEEXT): aesdata.$(OBJEXT) + $(LINK) aesdata.$(OBJEXT) $(LIBS) -o aesdata$(EXEEXT) + +desdata$(EXEEXT): desdata.$(OBJEXT) + $(LINK) desdata.$(OBJEXT) $(LIBS) -o desdata$(EXEEXT) shadata$(EXEEXT): shadata.$(OBJEXT) - $(LINK) shadata.$(OBJEXT) $(LIBS) -lm -o $@ + $(LINK) shadata.$(OBJEXT) $(LIBS) -lm -o shadata$(EXEEXT) + +# .$(OBJEXT)$(EXEEXT): +# $(LINK) $< $(LIBS) -o $@ # desCore rules # It seems using $(srcdir)/ doesn't work with GNU make 3.79.1