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

include ../../make/includefile

all:	window
install: all
	cp window $(MBINDIR)/sunwindow

window:	window.o
	$(CC) -o window window.o -lsuntool -lsunwindow -lpixrect

clean:
	rm -f window window.o
