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

DEFOBJS =	tokenize.do tokinternal.do
PROCOBJS =	tokenize.po tokenstrings.po

include ../../make/includefile

all:	compiledefs compileprocs
install: all
	cp tokenize.do $(DEFDIR)
	cp $(PROCOBJS) $(PROCDIR)

# dependencies
tokenize.po: tokenize.p tokenize.do tokinternal.do
tokenstrings.po: tokenstrings.p tokenize.do

clean:
	rm -f $(DEFOBJS) $(PROCOBJS)
