📄 makefile
字号:
ifeq ($(SRCDIR)x,x)SRCDIR = $(CURDIR)/../../..endifinclude $(SRCDIR)/Makefile.config# I can't figure out what XML_BYTE_ORDER is, but it doesn't look like the# code has ever defined it. That means it's treated like 0 in #if. Since# we started using the Gcc -Wundef option, that generates a warning, so# se set it explicitly to 0 here.CFLAGS = $(CFLAGS_COMMON) -DXML_BYTE_ORDER=0 $(CFLAGS_PERSONAL) $(CADD)LIBLDFLAGS = $(LDFLAGS_VERSINFO) -rpath $(LIBINST_DIR) $(LADD)INCLUDES = -I$(SRCDIR) -I$(SRCDIR)/lib/util/includedefault: allinclude $(SRCDIR)/Makefile.common.PHONY: allall: libxmlrpc_xmltok.la.PHONY: cleanclean: clean-common rm -f nametab.h.PHONY: distcleandistclean: clean distclean-common.PHONY: tagstags: TAGS.PHONY: distdirdistdir:.PHONY: installinstall: install-common.PHONY: depdep: dep-commonLTLIBRARIES_TO_INSTALL = libxmlrpc_xmltok.laLIBXMLRPC_XMLTOK_OBJS = xmltok.lo xmlrole.lolibxmlrpc_xmltok.la: $(LIBXMLRPC_XMLTOK_OBJS) $(LIBTOOL) --mode=link $(CCLD) -o $@ $(LIBLDFLAGS) $^$(LIBXMLRPC_XMLTOK_OBJS):%.lo:%.c $(LIBTOOL) --mode=compile $(CC) -c $(INCLUDES) $(LIBXML_INCLUDES) \ $(CFLAGS) $<GENNMTAB = ../gennmtab/gennmtabnametab.h: $(GENNMTAB) rm -f $@ $(GENNMTAB) >$@ || (rm -f $@ || false)$(GENNMTAB): $(MAKE) -C $(dir $@) $(notdir $@)xmltok.lo: nametab.hinclude Makefile.depend
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -