[comp.sys.amiga] Oops Here's makefile for Shell 2.05m

drew@cgfsv1.dec.com (Steve Drew) (01/22/87)

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