1192830Sed# This is the make file for ee, the "easy editor".
2192830Sed#
3192830Sed# A file called 'make.local' will be generated which will contain information 
4192830Sed# specific to the local system, such as if it is a BSD or System V based 
5192830Sed# version of UNIX, whether or not it has catgets, or select.  
6192830Sed#
7192830Sed# The "install" target ("make install") will copy the ee binary to 
8192830Sed# the /usr/local/bin directory on the local system.  The man page (ee.1) 
9192830Sed# will be copied into the /usr/local/man/man1 directory.
10192830Sed#
11192830Sed# The "clean" target ("make clean") will remove the ee and new_curse.o 
12192830Sed# object files, and the ee binary.
13192830Sed#
14192830Sed
15192830Sedall :	localmake buildee
16192830Sed
17192830Sedbuildee :	
18192830Sed	make -f make.local
19192830Sed
20192830Sedlocalmake:
21192830Sed	@./create.make
22192830Sed
23192830Sedinstall :
24192830Sed	cp ee /usr/local/bin/ee
25192830Sed	cp ee.1 /usr/local/man/man1/ee.1
26192830Sed
27192830Sedclean :
28192830Sed	rm -f ee.o new_curse.o ee 
29192830Sed
30