+- let the build system implement some make functions($(patsubst),$(wildcard),...)
- make --enable-dso the default
- fix module loading for selftest during non-developer builds
- clearer distinction between dcerpc and ndr. seperate interface tables?
heimdal/lib/roken/vis.h: heimdal/lib/roken/vis.hin
heimdal/lib/roken/err.h: heimdal/lib/roken/err.hin
-$(patsubst heimdal/lib/des/%.h,heimdal/lib/des/hcrypto/%.h,$(wildcard heimdal/lib/des/*.h)): heimdal/lib/des/hcrypto
+include hcrypto-deps.pl heimdal/lib/des/*.h|
heimdal/lib/des/hcrypto:
rm -f $@; ln -s ./../des $@
--- /dev/null
+#!/usr/bin/perl
+use strict;
+
+foreach (@ARGV) {
+ my $old = $_;
+ my $new = $old; $new =~ s/des/des\/hcrypto/g;
+ my $dir = $old;
+ print "$new: $old heimdal/lib/des/hcrypto\n";
+}