提交 ce192ebe 编写于 作者: R Richard Levitte

Remove all special make depend flags, as well as OPENSSL_DOING_MAKEDEPEND

All those flags existed because we had all the dependencies versioned
in the repository, and wanted to have it be consistent, no matter what
the local configuration was.  Now that the dependencies are gone from
the versioned Makefile.ins, it makes much more sense to use the exact
same flags as when compiling the object files.
Reviewed-by: NRich Salz <rsalz@openssl.org>
上级 88297284
...@@ -97,7 +97,6 @@ CROSS_COMPILE= {- $config{cross_compile_prefix} -} ...@@ -97,7 +97,6 @@ CROSS_COMPILE= {- $config{cross_compile_prefix} -}
CC= $(CROSS_COMPILE){- $target{cc} -} CC= $(CROSS_COMPILE){- $target{cc} -}
CFLAGS={- our $cflags2 = join(" ",(map { "-D".$_} @{$config{defines}}),"-DOPENSSLDIR=\"\\\"\$(OPENSSLDIR)\\\"\"","-DENGINESDIR=\"\\\"\$(ENGINESDIR)\\\"\"") -} {- $config{cflags} -} CFLAGS={- our $cflags2 = join(" ",(map { "-D".$_} @{$config{defines}}),"-DOPENSSLDIR=\"\\\"\$(OPENSSLDIR)\\\"\"","-DENGINESDIR=\"\\\"\$(ENGINESDIR)\\\"\"") -} {- $config{cflags} -}
CFLAGS_Q={- $cflags2 =~ s|([\\"])|\\$1|g; $cflags2 -} {- $config{cflags} -} CFLAGS_Q={- $cflags2 =~ s|([\\"])|\\$1|g; $cflags2 -} {- $config{cflags} -}
DEPFLAGS= {- join(" ",map { "-D".$_} @{$config{depdefines}}) -}
LDFLAGS= {- $config{lflags} -} LDFLAGS= {- $config{lflags} -}
PLIB_LDFLAGS= {- $config{plib_lflags} -} PLIB_LDFLAGS= {- $config{plib_lflags} -}
EX_LIBS= {- $config{ex_libs} -} EX_LIBS= {- $config{ex_libs} -}
...@@ -743,9 +742,7 @@ Makefile: {- $config{build_file_template} -} $(SRCDIR)/Configure $(SRCDIR)/confi ...@@ -743,9 +742,7 @@ Makefile: {- $config{build_file_template} -} $(SRCDIR)/Configure $(SRCDIR)/confi
return <<"EOF"; return <<"EOF";
$obj\$(DEP_EXT): $deps $obj\$(DEP_EXT): $deps
rm -f \$\@.tmp; touch \$\@.tmp rm -f \$\@.tmp; touch \$\@.tmp
\$(MAKEDEPEND) -f\$\@.tmp -o"|$obj" \\ \$(MAKEDEPEND) -f\$\@.tmp -o"|$obj" -- \$(CFLAGS)$incs -- $srcs \\
-- -DOPENSSL_DOING_MAKEDEPEND \$(DEPFLAGS)$incs \\
-- $srcs \\
2>/dev/null 2>/dev/null
sed -e 's/^.*|//' -e 's/ \\/\\(\\\\.\\|[^ ]\\)*//g' -e '/: *\$\$/d' -e '/^\\(#.*\\| *\\)\$\$/d' \$\@.tmp > \$\@ sed -e 's/^.*|//' -e 's/ \\/\\(\\\\.\\|[^ ]\\)*//g' -e '/: *\$\$/d' -e '/^\\(#.*\\| *\\)\$\$/d' \$\@.tmp > \$\@
rm \$\@.tmp rm \$\@.tmp
...@@ -755,7 +752,7 @@ EOF ...@@ -755,7 +752,7 @@ EOF
} }
return <<"EOF"; return <<"EOF";
$obj\$(DEP_EXT): $deps $obj\$(DEP_EXT): $deps
\$(CC) -DOPENSSL_DOING_MAKEDEPEND \$(DEPFLAGS)$incs -MM -MF \$\@ -MQ $obj $srcs \$(CC) \$(CFLAGS)$incs -MM -MF \$\@ -MQ $obj $srcs
$obj\$(OBJ_EXT): $obj\$(DEP_EXT) $obj\$(OBJ_EXT): $obj\$(DEP_EXT)
\$(CC) \$(CFLAGS)$incs -c -o \$\@ $srcs \$(CC) \$(CFLAGS)$incs -c -o \$\@ $srcs
EOF EOF
......
...@@ -400,14 +400,6 @@ while ((my $first, my $second) = (shift @list, shift @list)) { ...@@ -400,14 +400,6 @@ while ((my $first, my $second) = (shift @list, shift @list)) {
unshift @list, $second; unshift @list, $second;
} }
# Construct the string of what $config{depdefines} should look like with
# the defaults from %disabled above. (we need this to see if we should
# advise the user to run "make depend"):
my @default_depdefines =
map { my $x = $_; $x =~ tr{[a-z]-}{[A-Z]_}; "OPENSSL_NO_$x"; }
grep { $disabled{$_} !~ /\(no-depdefines\)$/ }
sort keys %disabled;
# Explicit "no-..." options will be collected in %disabled along with the defaults. # Explicit "no-..." options will be collected in %disabled along with the defaults.
# To remove something from %disabled, use "enable-foo". # To remove something from %disabled, use "enable-foo".
# For symmetry, "disable-foo" is a synonym for "no-foo". # For symmetry, "disable-foo" is a synonym for "no-foo".
...@@ -429,7 +421,6 @@ my $no_sse2=0; ...@@ -429,7 +421,6 @@ my $no_sse2=0;
my $user_cflags=""; my $user_cflags="";
my @user_defines=(); my @user_defines=();
my $unified = 0; my $unified = 0;
$config{depdefines}=[];
$config{openssl_api_defines}=[]; $config{openssl_api_defines}=[];
$config{openssl_algorithm_defines}=[]; $config{openssl_algorithm_defines}=[];
$config{openssl_thread_defines}=[]; $config{openssl_thread_defines}=[];
...@@ -785,7 +776,6 @@ foreach (sort (keys %disabled)) ...@@ -785,7 +776,6 @@ foreach (sort (keys %disabled))
($ALGO,$algo) = ("RMD160","rmd160") if ($algo eq "ripemd"); ($ALGO,$algo) = ("RMD160","rmd160") if ($algo eq "ripemd");
push @{$config{openssl_algorithm_defines}}, "OPENSSL_NO_$ALGO"; push @{$config{openssl_algorithm_defines}}, "OPENSSL_NO_$ALGO";
push @{$config{depdefines}}, "OPENSSL_NO_$ALGO";
print " OPENSSL_NO_$ALGO"; print " OPENSSL_NO_$ALGO";
# fix-up crypto/directory name(s) # fix-up crypto/directory name(s)
...@@ -1097,8 +1087,6 @@ if ($^O ne "VMS") { ...@@ -1097,8 +1087,6 @@ if ($^O ne "VMS") {
close(PIPE); close(PIPE);
} }
$config{depflags} =~ s/^\s*//;
# Deal with bn_ops ################################################### # Deal with bn_ops ###################################################
...@@ -1134,7 +1122,6 @@ $config{cflags} =~ s/([\\\"])/\\\1/g; ...@@ -1134,7 +1122,6 @@ $config{cflags} =~ s/([\\\"])/\\\1/g;
if (defined($config{api})) { if (defined($config{api})) {
$config{openssl_api_defines} = [ "OPENSSL_MIN_API=".$apitable->{$config{api}} ]; $config{openssl_api_defines} = [ "OPENSSL_MIN_API=".$apitable->{$config{api}} ];
my $apiflag = sprintf("OPENSSL_API_COMPAT=%s", $apitable->{$config{api}}); my $apiflag = sprintf("OPENSSL_API_COMPAT=%s", $apitable->{$config{api}});
push @default_depdefines, $apiflag;
push @{$config{defines}}, $apiflag; push @{$config{defines}}, $apiflag;
} }
......
...@@ -92,7 +92,6 @@ CROSS_COMPILE= {- $config{cross_compile_prefix} -} ...@@ -92,7 +92,6 @@ CROSS_COMPILE= {- $config{cross_compile_prefix} -}
CC= $(CROSS_COMPILE){- $target{cc} -} CC= $(CROSS_COMPILE){- $target{cc} -}
CFLAG={- our $cflags2 = join(" ",(map { "-D".$_} @{$config{defines}}),"-DOPENSSLDIR=\"\\\"\$(OPENSSLDIR)\\\"\"","-DENGINESDIR=\"\\\"\$(ENGINESDIR)\\\"\"") -} {- $config{cflags} -} CFLAG={- our $cflags2 = join(" ",(map { "-D".$_} @{$config{defines}}),"-DOPENSSLDIR=\"\\\"\$(OPENSSLDIR)\\\"\"","-DENGINESDIR=\"\\\"\$(ENGINESDIR)\\\"\"") -} {- $config{cflags} -}
CFLAG_Q={- $cflags2 =~ s|([\\"])|\\$1|g; $cflags2 -} {- $config{cflags} -} CFLAG_Q={- $cflags2 =~ s|([\\"])|\\$1|g; $cflags2 -} {- $config{cflags} -}
DEPFLAG= {- join(" ",map { "-D".$_} @{$config{depdefines}}) -}
LDFLAG= {- $config{lflags} -} LDFLAG= {- $config{lflags} -}
PLIB_LDFLAG= {- $config{plib_lflags} -} PLIB_LDFLAG= {- $config{plib_lflags} -}
EX_LIBS= {- $config{ex_libs} -} EX_LIBS= {- $config{ex_libs} -}
...@@ -254,7 +253,6 @@ BUILDENV= LC_ALL=C PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)'\ ...@@ -254,7 +253,6 @@ BUILDENV= LC_ALL=C PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)'\
DESTDIR='$(DESTDIR)' \ DESTDIR='$(DESTDIR)' \
INSTALLTOP='$(INSTALLTOP)' OPENSSLDIR='$(OPENSSLDIR)' \ INSTALLTOP='$(INSTALLTOP)' OPENSSLDIR='$(OPENSSLDIR)' \
LIBDIR='$(LIBDIR)' \ LIBDIR='$(LIBDIR)' \
DEPFLAG='$(DEPFLAG)' \
SHARED_LDFLAG='$(SHARED_LDFLAG)' \ SHARED_LDFLAG='$(SHARED_LDFLAG)' \
SHARED_RCFLAG='$(SHARED_RCFLAG)' \ SHARED_RCFLAG='$(SHARED_RCFLAG)' \
ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)' \ ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)' \
......
...@@ -111,7 +111,7 @@ uninstall: ...@@ -111,7 +111,7 @@ uninstall:
generate: openssl-vms.cnf progs.h generate: openssl-vms.cnf progs.h
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(EXE_SRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(EXE_SRC)
clean: clean:
rm -f *.o *.obj *.dll lib tags core .pure .nfs* *.old *.bak fluff $(EXE) rm -f *.o *.obj *.dll lib tags core .pure .nfs* *.old *.bak fluff $(EXE)
......
...@@ -107,7 +107,7 @@ libs: ...@@ -107,7 +107,7 @@ libs:
depend: depend:
@[ -z "$(THIS)" -o -f buildinf.h ] || touch buildinf.h # fake buildinf.h if it does not exist @[ -z "$(THIS)" -o -f buildinf.h ] || touch buildinf.h # fake buildinf.h if it does not exist
@[ -z "$(THIS)" ] || $(TOP)/util/domd $(CFLAG) $(INCLUDE) $(DEPFLAG) -- $(PROGS) $(LIBSRC) @[ -z "$(THIS)" ] || $(TOP)/util/domd $(CFLAG) $(INCLUDE) -- $(PROGS) $(LIBSRC)
@[ -z "$(THIS)" -o -s buildinf.h ] || rm buildinf.h @[ -z "$(THIS)" -o -s buildinf.h ] || rm buildinf.h
@[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) ) @[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi @if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
......
...@@ -101,7 +101,7 @@ files: ...@@ -101,7 +101,7 @@ files:
$(PERL) $(TOP)/util/files.pl "AES_ENC=$(AES_ENC)" Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl "AES_ENC=$(AES_ENC)" Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -72,7 +72,7 @@ files: ...@@ -72,7 +72,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -53,7 +53,7 @@ install: ...@@ -53,7 +53,7 @@ install:
done; done;
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -46,7 +46,7 @@ files: ...@@ -46,7 +46,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -50,7 +50,7 @@ files: ...@@ -50,7 +50,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -140,7 +140,7 @@ div: ...@@ -140,7 +140,7 @@ div:
generate: bn_prime.h generate: bn_prime.h
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -38,7 +38,7 @@ files: ...@@ -38,7 +38,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -52,7 +52,7 @@ files: ...@@ -52,7 +52,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -46,7 +46,7 @@ files: ...@@ -46,7 +46,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -52,7 +52,7 @@ files: ...@@ -52,7 +52,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -38,7 +38,7 @@ files: ...@@ -38,7 +38,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -44,7 +44,7 @@ files: ...@@ -44,7 +44,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -41,7 +41,7 @@ files: ...@@ -41,7 +41,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -41,7 +41,7 @@ files: ...@@ -41,7 +41,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -43,7 +43,7 @@ errors: ...@@ -43,7 +43,7 @@ errors:
$(PERL) $(TOP)/util/mkerr.pl -conf ct.ec -hprefix internal/ -write *.c $(PERL) $(TOP)/util/mkerr.pl -conf ct.ec -hprefix internal/ -write *.c
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -67,7 +67,7 @@ files: ...@@ -67,7 +67,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -40,7 +40,7 @@ files: ...@@ -40,7 +40,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -40,7 +40,7 @@ files: ...@@ -40,7 +40,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -40,7 +40,7 @@ files: ...@@ -40,7 +40,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -67,7 +67,7 @@ files: ...@@ -67,7 +67,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -48,7 +48,7 @@ files: ...@@ -48,7 +48,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -38,7 +38,7 @@ files: ...@@ -38,7 +38,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -63,7 +63,7 @@ files: ...@@ -63,7 +63,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -38,7 +38,7 @@ files: ...@@ -38,7 +38,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -38,7 +38,7 @@ files: ...@@ -38,7 +38,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -48,7 +48,7 @@ lint: ...@@ -48,7 +48,7 @@ lint:
update: depend update: depend
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -38,7 +38,7 @@ files: ...@@ -38,7 +38,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -38,7 +38,7 @@ files: ...@@ -38,7 +38,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -39,7 +39,7 @@ files: ...@@ -39,7 +39,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -56,7 +56,7 @@ files: ...@@ -56,7 +56,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -38,7 +38,7 @@ files: ...@@ -38,7 +38,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -71,7 +71,7 @@ files: ...@@ -71,7 +71,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -53,7 +53,7 @@ files: ...@@ -53,7 +53,7 @@ files:
generate: obj_dat.h ../../include/openssl/obj_mac.h obj_xref.h generate: obj_dat.h ../../include/openssl/obj_mac.h obj_xref.h
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -41,7 +41,7 @@ files: ...@@ -41,7 +41,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -41,7 +41,7 @@ files: ...@@ -41,7 +41,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -44,7 +44,7 @@ files: ...@@ -44,7 +44,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -45,7 +45,7 @@ files: ...@@ -45,7 +45,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff enc dec sign verify rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff enc dec sign verify
......
...@@ -56,7 +56,7 @@ files: ...@@ -56,7 +56,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -40,7 +40,7 @@ files: ...@@ -40,7 +40,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -38,7 +38,7 @@ files: ...@@ -38,7 +38,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -66,7 +66,7 @@ files: ...@@ -66,7 +66,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -46,7 +46,7 @@ files: ...@@ -46,7 +46,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -46,7 +46,7 @@ files: ...@@ -46,7 +46,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -44,7 +44,7 @@ files: ...@@ -44,7 +44,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -39,7 +39,7 @@ files: ...@@ -39,7 +39,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -101,7 +101,7 @@ files: ...@@ -101,7 +101,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -34,7 +34,7 @@ files: ...@@ -34,7 +34,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -38,7 +38,7 @@ files: ...@@ -38,7 +38,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -48,7 +48,7 @@ files: ...@@ -48,7 +48,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff enc dec sign verify rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff enc dec sign verify
......
...@@ -38,7 +38,7 @@ files: ...@@ -38,7 +38,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -38,7 +38,7 @@ files: ...@@ -38,7 +38,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -51,7 +51,7 @@ files: ...@@ -51,7 +51,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -52,7 +52,7 @@ files: ...@@ -52,7 +52,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -48,7 +48,7 @@ files: ...@@ -48,7 +48,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -116,7 +116,7 @@ errors: ...@@ -116,7 +116,7 @@ errors:
done done
depend: depend:
@[ -z "$(THIS)" ] || $(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TESTLIBSRC) @[ -z "$(THIS)" ] || $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC) $(TESTLIBSRC)
@[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) ) @[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
clean: clean:
......
...@@ -42,14 +42,6 @@ extern "C" { ...@@ -42,14 +42,6 @@ extern "C" {
$OUT .= "# endif\n"; $OUT .= "# endif\n";
} }
} }
if ($OUT) {
$OUT = <<"EOF";
#ifndef OPENSSL_DOING_MAKEDEPEND
$OUT
#endif /* OPENSSL_DOING_MAKEDEPEND */
EOF
}
""; "";
-} -}
......
...@@ -72,7 +72,7 @@ files: ...@@ -72,7 +72,7 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
clean: clean:
rm -f $(LIBOBJ) *.obj lib tags core .pure .nfs* *.old *.bak fluff rm -f $(LIBOBJ) *.obj lib tags core .pure .nfs* *.old *.bak fluff
......
...@@ -165,7 +165,7 @@ apps: ...@@ -165,7 +165,7 @@ apps:
@(cd ..; $(MAKE) DIRS=apps all) @(cd ..; $(MAKE) DIRS=apps all)
depend: depend:
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC) $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(SRC)
clean: clean:
rm -f .rnd tmp.bntest tmp.bctest *.o *.obj *.dll lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log *.log dummytest rm -f .rnd tmp.bntest tmp.bctest *.o *.obj *.dll lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log *.log dummytest
......
...@@ -9,7 +9,7 @@ case "${MAKEDEPEND}" in ...@@ -9,7 +9,7 @@ case "${MAKEDEPEND}" in
cat) cat)
;; ;;
makedepend) makedepend)
${MAKEDEPEND} -DOPENSSL_DOING_MAKEDEPEND $@ || exit 1 ${MAKEDEPEND} $@ || exit 1
;; ;;
*) *)
args="-Werror -MM" args="-Werror -MM"
...@@ -20,7 +20,7 @@ makedepend) ...@@ -20,7 +20,7 @@ makedepend)
shift shift
done done
sed -e '/DO NOT DELETE THIS LINE/q' Makefile >Makefile.tmp sed -e '/DO NOT DELETE THIS LINE/q' Makefile >Makefile.tmp
${MAKEDEPEND} -DOPENSSL_DOING_MAKEDEPEND $args >>Makefile.tmp || exit 1 ${MAKEDEPEND} $args >>Makefile.tmp || exit 1
mv Makefile.tmp Makefile mv Makefile.tmp Makefile
;; ;;
esac esac
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册