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

EXTPROCS = nullwindow.po opentracewindow.po
INTPROCS = tracewindow.po
PROCOBJS = $(EXTPROCS) $(INTPROCS)

include ../../make/includefile

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

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

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

# inter-module dependencies

include Makefile.deps
