diff options
author | Richard Levitte <levitte@openssl.org> | 2016-02-18 00:27:04 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-02-18 00:38:26 +0100 |
commit | 4418e0302f471750e643079a753ab43a2eb164b8 (patch) | |
tree | ff6ce2c6ebbc207a274632a1810eacf297834994 /crypto/build.info | |
parent | Fix spelling (diff) | |
download | openssl-4418e0302f471750e643079a753ab43a2eb164b8.tar.xz openssl-4418e0302f471750e643079a753ab43a2eb164b8.zip |
In the unified scheme, there is no $(TOP), use $(SRCDIR) instead
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/build.info')
-rw-r--r-- | crypto/build.info | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/build.info b/crypto/build.info index 736079c296..507e998fc5 100644 --- a/crypto/build.info +++ b/crypto/build.info @@ -22,13 +22,13 @@ crypto/buildinf.h : Makefile ##### APPLINK, UPLINK and CPUID assembler implementations {- $builddir -}/applink.o: $(SRCDIR)/ms/applink.c - $(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/applink.c + $(CC) $(CFLAGS) -c -o $@ $(SRCDIR)/ms/applink.c {- $builddir -}/uplink.o: $(SRCDIR)/ms/uplink.c {- $builddir -}/applink.o - $(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/uplink.c + $(CC) $(CFLAGS) -c -o $@ $(SRCDIR)/ms/uplink.c {- $builddir -}/uplink-x86.s: $(SRCDIR)/ms/uplink-x86.pl - CC="$(CC)" $(PERL) $(TOP)/ms/uplink-x86.pl $(PERLASM_SCHEME) > $@ + CC="$(CC)" $(PERL) $(SRCDIR)/ms/uplink-x86.pl $(PERLASM_SCHEME) > $@ {- $builddir -}/x86cpuid.s: {- $sourcedir -}/x86cpuid.pl {- $sourcedir -}/perlasm/x86asm.pl CC="$(CC)" $(PERL) {- $sourcedir -}/x86cpuid.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@ |