Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!nbires!hao!hplabs!decwrl!cgfsv1.dec.com!drew From: drew@cgfsv1.dec.com (Steve Drew) Newsgroups: comp.sys.amiga Subject: Oops Here's makefile for Shell 2.05m Message-ID: <7747@decwrl.DEC.COM> Date: Thu, 22-Jan-87 15:24:12 EST Article-I.D.: decwrl.7747 Posted: Thu Jan 22 15:24:12 1987 Date-Received: Fri, 23-Jan-87 06:41:26 EST Sender: daemon@decwrl.DEC.COM Organization: Digital Equipment Corporation Lines: 48 Forgot this in the source posting, (better late than never). ----------------------snip ---- snip---------------------------------- ###################################################################### # # Makefile to build Shell 2.05M # by Steve Drew 20-Jan-87 # # Hope you've patched c.lib (fexec) for 1.2 by now. # ###################################################################### OBJS = run.o main.o comm1.o comm2.o execom.o set.o sub.o \ globals.o RawConsole.o sort.o INCL = shell.h Shell : $(OBJS) ln -o Shell $(OBJS) -lc RawConsole.o : RawConsole.c $(INCL) cc +IShell.syms RawConsole.c run.o : run.c $(INCL) cc +HShell.syms run.c main.o : main.c $(INCL) cc +IShell.syms main.c comm1.o : comm1.c $(INCL) cc +IShell.syms comm1.c comm2.o : comm2.c $(INCL) cc +IShell.syms comm2.c set.o : set.c $(INCL) cc +IShell.syms set.c sub.o : sub.c $(INCL) cc +IShell.syms sub.c globals.o : globals.c $(INCL) cc +IShell.syms globals.c execom.o : execom.c $(INCL) cc +IShell.syms execom.c