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

📄 makefile.in

📁 minimal python variant for small footprint apps like embedded apps
💻 IN
字号:
# NOTE: Makefile.in is converted into Makefile by the configure script# in the parent directory.  Once configure has run, you can recreate# the Makefile by running just config.status.# === Variables set by config.stat ===VERSION=	@VERSION@srcdir=		@srcdir@VPATH=		@srcdir@CC=		@CC@RANLIB=		@RANLIB@AR=		@AR@DEFS=		@DEFS@PALM_CFLAGS=	@PALM_CFLAGS@# === Other things that are customizable but not by configure ===INCLDIR=	$(srcdir)/../IncludeOPT=		@OPT@CFLAGS=		$(OPT) -I$(INCLDIR) -I.. $(PALM_CFLAGS) $(DEFS)MKDEP=		mkdepSHELL=		/bin/sh# === Fixed definitions ===OBJS=		abstract.o bufferobject.o \		classobject.o cobject.o complexobject.o \		fileobject.o floatobject.o \		frameobject.o funcobject.o intobject.o listobject.o \		longobject.o dictobject.o methodobject.o \		moduleobject.o object.o rangeobject.o \		sliceobject.o stringobject.o \		tupleobject.o typeobject.oSRCS=		abstract.c bufferobject.c \		classobject.c cobject.c complexobject.c \		fileobject.c floatobject.c \		frameobject.c funcobject.c intobject.c listobject.c \		longobject.c dictobject.c methodobject.c \		moduleobject.c object.c rangeobject.c \		sliceobject.c stringobject.c \		tupleobject.c typeobject.cLIBRARY=	../libpython$(VERSION).a# === Rules ===all:		$(OBJS)# This target is used by the master Makefile to add the objects to the libraryadd2lib:	$(OBJS)		$(AR) cr $(LIBRARY) $(OBJS)		touch add2libclean:		-rm -f *.o core *~ [@,#]* *.old *.orig *.rej add2libclobber:	clean		-rm -f *.a tags TAGSMakefile:	$(srcdir)/Makefile.in ../config.status		(cd ..; CONFIG_FILES=Objects/Makefile CONFIG_HEADERS= \		$(SHELL) config.status)depend:		$(MKDEP) $(CFLAGS) `echo $(OBJS) | tr ' ' '\012' | \					sed 's|\(.*\)\.o|$(srcdir)/\1.c|'`.PRECIOUS:	Makefileabstract.o: abstract.cbufferobject.o: bufferobject.cclassobject.o: classobject.ccobject.o: cobject.ccomplexobject.o: complexobject.cfileobject.o: fileobject.cfloatobject.o: floatobject.cframeobject.o: frameobject.cfuncobject.o: funcobject.cintobject.o: intobject.clistobject.o: listobject.clongobject.o: longobject.cdictobject.o: dictobject.cmethodobject.o: methodobject.cmoduleobject.o: moduleobject.cobject.o: object.crangeobject.o: rangeobject.csliceobject.o: sliceobject.cstringobject.o: stringobject.ctupleobject.o: tupleobject.ctypeobject.o: typeobject.c# DO NOT DELETE THIS LINE -- mkdep uses it.# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.# IF YOU PUT ANYTHING HERE IT WILL GO AWAY

⌨️ 快捷键说明

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