📄 makefile.common
字号:
# $Id: Makefile.common,v 1.15 2003/05/15 19:42:31 n8gray Exp $# Platform independent part of make procedure for NEdit directory, # included by machine specific makefiles.#OBJS = nedit.o file.o menu.o window.o selection.o search.o undo.o shift.o \ help.o preferences.o tags.o userCmds.o shell.o regularExp.o macro.o \ text.o textSel.o textDisp.o textBuf.o textDrag.o server.o highlight.o \ highlightData.o interpret.o parse.o smartIndent.o regexConvert.o \ rbTree.o windowTitle.o calltips.o server_common.o rangeset.oall: nedit nc# Note there is no depedency for linkdate.c/o. This is intentional,# we only want natural rebuilds to regenerate the link date.nedit: $(OBJS) ../util/libNUtil.a $(CC) $(CFLAGS) -c linkdate.c $(CC) $(CFLAGS) $(OBJS) linkdate.o ../util/libNUtil.a $(LIBS) -o $@# Note LIBS isn't quite right here; it links unnecessarily against Motifnc: nc.o server_common.o ../util/libNUtil.a $(CC) $(CFLAGS) nc.o server_common.o ../util/libNUtil.a $(LIBS) -o $@help.o: help.c $(CC) $(CFLAGS) $(BIGGER_STRINGS) -c help.c -o $@smartIndent.o: smartIndent.c $(CC) $(CFLAGS) $(BIGGER_STRINGS) -c smartIndent.c -o $@highlightData.o: highlightData.c $(CC) $(CFLAGS) $(BIGGER_STRINGS) -c highlightData.c -o $@clean: rm -f $(OBJS) nedit nc nc.o parse.c linkdate.oparse.c: parse.y @echo "NOTE: Don't worry about 'command not found' errors here" @echo " unless you have changed the parse.y file." bison -o parse.c parse.y || ( yacc parse.y && mv y.tab.c parse.c ) || \ cp parse_noyacc.c parse.c# Get the dependencies for all objectsinclude Makefile.dependencies
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -