Lines Matching full:ee
1 # This is the make file for ee, the "easy editor".
3 # If building ee using curses, type "make curses", otherwise new_curse (a
4 # subset of curses that supports ee) will be built and ee will use new_curse
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)
11 # The "clean" target ("make clean") will remove the ee and new_curse.o
12 # object files, and the ee binary.
18 # DEFINES is used for new_curse.c, and CFLAGS is used for ee.c.
37 all : ee
39 curses : ee.c
40 cc ee.c -o ee $(CFLAGS) -lcurses
42 ee : ee.o new_curse.o
43 cc -o ee ee.o new_curse.o $(CFLAGS)
45 ee.o : ee.c new_curse.h
46 cc -c ee.c $(DEFINES) $(CFLAGS)
52 cp ee /usr/local/bin/ee
53 cp ee.1 /usr/local/man/man1/ee.1
56 rm -f ee.o new_curse.o ee