⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 make.default

📁 EE Text Editor in standard UNIX
💻 DEFAULT
字号:
# This is the make file for ee, the "easy editor".## If building ee using curses, type "make curses", otherwise new_curse (a # subset of curses that supports ee) will be built and ee will use new_curse # instead of curses.## The "install" target ("make install") will copy the ee binary to # the /usr/local/bin directory on the local system.  The man page (ee.1) # will be copied into the /usr/local/man/man1 directory.## The "clean" target ("make clean") will remove the ee and new_curse.o # object files, and the ee binary.## If the system does not have localization routines, use the -DNO_CATGETS# define.  If the system supports setlocale(), catopen(), and catgets() and # localization is desired, do not use -DNO_CATGETS.## DEFINES is used for new_curse.c, and CFLAGS is used for ee.c.## for System V, using new_curse with terminfoDEFINES =	-DSYS5 -DNCURSE # for BSD, using new_curse with termcap#DEFINES = 	-DCAP -DNCURSE # for BSD systems with select(), using new_curse with termcap, use:#DEFINES =      -DCAP -DNCURSE -DBSD_SELECT # flags for compilationCFLAGS = -s -DNO_CATGETS# For Sun systems, remove the '#' from the front of the next two lines:#DEFINES = -DSYS5 -DNCURSE #CFLAGS  = -I/usr/5include -L/usr/5lib -DNO_CATGETS -sall :	eecurses :	ee.c	cc ee.c -o ee $(CFLAGS) -lcurses ee :	ee.o new_curse.o	cc -o ee ee.o new_curse.o $(CFLAGS) ee.o :	ee.c new_curse.h	cc -c ee.c $(DEFINES) $(CFLAGS) new_curse.o :	new_curse.c new_curse.h	cc new_curse.c -c $(DEFINES) $(CFLAGS)install :	cp ee /usr/local/bin/ee	cp ee.1 /usr/local/man/man1/ee.1clean :	rm -f ee.o new_curse.o ee 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -