# (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

PROCOBJS = comp_times.po difference_time_ranges.po difference_time_sets.po \
	insert_tr_in_ts.po intersect_time_ranges.po \
	intersect_time_sets.po max_time.po min_time.po not_time_set.po \
	sel_max_time.po sel_min_time.po union_time_ranges.po \
	union_time_sets.po timetohhmm.po hhmmtotime.po

include ../../make/includefile

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

all:	compileprocs
install: all
	cp $(PROCOBJS) ../bin
clean:
	rm -f $(PROCOBJS)

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

# inter-module dependencies

include Makefile.deps
