# (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 = ac_noart.po ac_tracewin.po ac_trivial.po make_ac_filtered.po \
	make_ac_filtered3.po rmdemo.po rmdemod.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
