From: wb8foz@scl.cwru.edu (David Lesher)
Newsgroups: comp.os.linux.announce
Subject: dired
Message-ID: <1okkso$jhr@fitz.TC.Cornell.EDU>
Date: 22 Mar 93 15:10:16 GMT
Approved: linux-announce@tc.cornell.edu (Matt Welsh)

dired is a "directory editor" of emacs linage. It lets you display all
the files in a directory, and [view,edit,compress,move,delete] them as
desired. I find it is great for 'cleaning out the garbage' that seems
to collect.

An un-emacs version written by lijewski@xtesoc2.gsfc.nasa.gov is
available from xenopus.gsfc.nasa.gov:pub/src.  Two Linux'er sent me
modified make files to make it work. Here's the diffs version from
tor@tss.no, as it is shorter.  (grosen@isc.cs.ndsu.NoDak.edu sent me
the whole Make first, and I actually used that.)


###################################################
----
diff -u Makefile Makefile.linux
--- Makefile	        Wed Feb 24 13:20:41 1993
+++ Makefile.linux      Sun Mar 21 18:38:19 1993
@@ -7,7 +7,7 @@
 #
 # Your C++ compiler goes here.
 #
-CC = CC
+CC = gcc
 
 #
 # flags you need to compile:
@@ -47,7 +47,7 @@
 #
 #   Add -DNOWAITPID if you don't have waitpid(2).
 #
-CFLAGS = -DCOMPLETION -DL_AND_G -DSIGINTERRUPT -O
+CFLAGS = -DCOMPLETION -DL_AND_G -O
 
 #
 # Those flags needed to compile in the type of terminal
@@ -61,7 +61,7 @@
 # include files set up correctly to include <unistd.h> together with 
 #  <osfcn.h>, among others.
 #
-TERMFLAGS = -DTERMIO
+TERMFLAGS = -DTERMIOS
 
 #
 # libraries needed:
@@ -147,7 +147,7 @@
 
 install: dired diredrc dired.1
        $(INSTALL) $(INSTFLAGS) dired $(BINDIR)
-       $(INSTALL) diredrd $(LIBDIR)
+       $(INSTALL) diredrc $(LIBDIR)
        $(INSTALL) dired.1 $(MANDIR)
 
 depend: $(SRC)
----
As you can see, only the CC, CFLAGS and TERMFLAGS lines are changed.
The last change (INSTALL) is because of a typo in the provided Makefile.
###################################################

My thanks to these gentlemen for their help. 

-- 
Send submissions for comp.os.linux.announce to: linux-announce@tc.cornell.edu
