# (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: Arthur Goldberg

# Make file for the demo

DEFOBJS = ac_filtered.do application_init.do appt_scheduler_member.do \
	calendar_display.do events.do itostr.do itostr2.do \
	master2_internal.do master_internal.do master_monitor.do \
	member2_fe_init.do member2_init.do member_fe_init.do \
	member_init.do member_structs.do member_window.do rmdemo.do \
	solicitor.do \
	times.do timesaux.do tsw.do ufilter_init.do umain.do \
	usermonitor.do usub.do appt_scheduler_init.do appt_scheduler_member.do \
	appt_scheduler_operator.do appt_scheduler_registrant.do \
	appt_scheduler_structs.do tracewindow.do rmdemod.do

include ../../make/includefile

DEFPATH= .:../bin:$(DEFDIR)
LINKPATH= .:../bin:$(PROCDIR)
LOADPATH= .:../bin:$(PROCDIR)

all:	compiledefs 
install: all
	cp $(DEFOBJS) ../bin
clean:
	rm -f $(DEFOBJS)

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

# inter-module dependencies

include Makefile.deps
