# (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.5 3/13/90

# Make file for the resource manager


EXTDOBJ = rshell.do
INTDOBJ = linkserver.do rshellint.do
DEFOBJS = $(EXTDOBJ) $(INTDOBJ)


EXTPOBJ = dmain.po rshell.po rshelld.po
INTPOBJ = linkserver.po rshellac.po rshellexec.po
PROCOBJS = $(EXTPOBJ) $(INTPOBJ)

include ../../make/includefile

all:	compiledefs compileprocs
install: all
	cp $(EXTPOBJ) $(PROCDIR)
	cp $(EXTDOBJ) $(DEFDIR)

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

deps:
	$(BINDIR)/getdeps *.p *.d > Makefile.deps

include Makefile.deps
