Merge branch 'vendor/GCC50'
[dragonfly.git] / contrib / ee / Makefile
1 # This is the make file for ee, the "easy editor".
2 #
3 # A file called 'make.local' will be generated which will contain information 
4 # specific to the local system, such as if it is a BSD or System V based 
5 # version of UNIX, whether or not it has catgets, or select.  
6 #
7 # The "install" target ("make install") will copy the ee binary to 
8 # the /usr/local/bin directory on the local system.  The man page (ee.1) 
9 # will be copied into the /usr/local/man/man1 directory.
10 #
11 # The "clean" target ("make clean") will remove the ee and new_curse.o 
12 # object files, and the ee binary.
13 #
14
15 all :   localmake buildee
16
17 buildee :       
18         make -f make.local
19
20 localmake:
21         @./create.make
22
23 install :
24         cp ee /usr/local/bin/ee
25         cp ee.1 /usr/local/man/man1/ee.1
26
27 clean :
28         rm -f ee.o new_curse.o ee 
29