makefile.common

来自「nedit 是一款linux下的开发源码的功能强大的编辑器」· COMMON 代码 · 共 45 行

COMMON
45
字号
# $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 + =
减小字号Ctrl + -
显示快捷键?