We no longer need to link against ntdll in the Unix sense.

diff --git a/dlls/make_dlls b/dlls/make_dlls
index 024b3f3..6c3c01a 100755
--- a/dlls/make_dlls
+++ b/dlls/make_dlls
@@ -257,32 +257,6 @@
 }
 
 ################################################################
-# output the linkable dlls special links
-
-print NEWMAKE <<EOF;
-
-\# Special targets for dlls that we need to link to
-
-libntdll.dll.\$(LIBEXT): ntdll/ntdll.dll\$(DLLEXT)
-	\$(RM) \$@ && \$(LN_S) ntdll/ntdll.dll\$(DLLEXT) \$@
-
-all: libntdll.dll.\$(LIBEXT)
-
-uninstall::
-	\$(RM) \$(libdir)/libntdll.dll.\$(LIBEXT)
-
-install install-lib:: \$(INSTALLSUBDIRS:%=%/__install__)
-	cd \$(libdir) && \$(RM) libntdll.dll.\$(LIBEXT) && \\
-	if [ "\$(dlldir)" = "\$(libdir)/wine" ]; \\
-	then \\
-	  \$(LN_S) wine/ntdll.dll\$(DLLEXT) libntdll.dll.\$(LIBEXT); \\
-	else \\
-	  \$(LN_S) \$(dlldir)/ntdll.dll\$(DLLEXT) libntdll.dll.\$(LIBEXT); \\
-	fi
-
-EOF
-
-################################################################
 # makefile trailer
 
 print NEWMAKE <<EOF;
@@ -311,6 +285,8 @@
 	\$(MKINSTALLDIRS) \$(dlldir)
 	for f in \$(IMPORT_LIBS:%=%.\$(IMPLIBEXT)); do \$(INSTALL_DATA) \$\$f \$(dlldir)/\$\$f; done
 
+install install-lib:: \$(INSTALLSUBDIRS:%=%/__install__)
+
 uninstall::
 	\$(RM) \$(IMPORT_LIBS:%=\$(dlldir)/%.\$(IMPLIBEXT))
 	-rmdir \$(dlldir)