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

# Make file for the resource manager


EXTDOBJ = sysrmanager.do rmanager.do rmain.do chainedrm.do personalrm.do \
		userrm.do
INTDOBJ = rminternal.do 
DEFOBJS = $(EXTDOBJ) $(INTDOBJ)


EXTPOBJ = rmanager.po rmain.po chainedrm.po chainedsysrm.po \
	personalrm.po ac_none.po userrm.po
INTPOBJ = 
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
