# (C) Copyright International Business Machines Corporation 23 January 
# 1990.  All Rights Reserved. 
#  
# See the file USERAGREEMENT distributed with this software for full 
# terms and conditions of use. 
# File: Makefile
# Author: Andy Lowry
# SCCS Info: @(#)Makefile	1.3 3/13/90

# Make file for the piping shell

INTDOBJ = pshell.do
DEFOBJS = $(INTDOBJ)

EXTPOBJ = pshell.po
INTPOBJ = parseprocnet.po parseproc.po parsepipe.po wrapargs.po
PROCOBJS = $(EXTPOBJ) $(INTPOBJ)

include ../../make/includefile

all:	compiledefs compileprocs

install: all
	cp $(EXTPOBJ) $(PROCDIR)

parsepipe.po:	pshell.do
parseproc.po:	pshell.do
parseprocnet.po: pshell.do
pshell.po:	pshell.do
wrapargs.po:	pshell.do

pshell.po:	parseprocnet.po

parseprocnet.po: parseproc.po parsepipe.po wrapargs.po

clean:
	rm -f $(DEFOBJS) $(PROCOBJS)
