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

📄 makefile

📁 minimal python variant for small footprint apps like embedded apps
💻
字号:
# Generated automatically from Makefile.in by configure.# 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=	1.5srcdir=		../../ParserVPATH=		../../ParserCC=		m68k-palmos-coff-gccRANLIB=		m68k-palmos-coff-ranlibAR=		m68k-palmos-coff-arDEFS=		-DHAVE_CONFIG_HLIBS=		PALM_CFLAGS=	-fno-builtin -Wall -I../libc/include -I../../Include # === Other things that are customizable but not by configure ===INCLDIR=	$(srcdir)/../IncludeOPT=		-g -O2CFLAGS=		$(OPT) -I$(INCLDIR) -I.. $(PALM_CFLAGS) $(DEFS)MKDEP=		mkdepSHELL=		/bin/sh# === Fixed definitions ===POBJS=		acceler.o grammar1.o \		listnode.o node.o parser.o \		parsetok.o tokenizer.o bitset.o#		metagrammar.o# uncomment the following when WITHOUT_COMPILER == 1# POBJS=AROBJS=		$(POBJS) myreadline.oOBJS=		$(AROBJS) intrcheck.oPGENMAIN=	pgenmain.oPGOBJS=		firstsets.o grammar.o pgen.o printgrammar.oPGENOBJS=	$(PGENMAIN) $(POBJS) $(PGOBJS)DOBJS=		$(PGENMAIN) $(OBJS) $(PGOBJS)PGEN=		pgenLIBRARY=	../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) $(AROBJS)		if test ! -f ../Modules/hassignal; \		then echo adding intrcheck.o; $(AR) r $(LIBRARY) intrcheck.o; \		else echo leaving intrcheck.o out; fi		touch add2lib$(PGEN):	$(PGENOBJS)		$(CC) $(OPT) $(PGENOBJS) $(LIBS) -o $(PGEN)clean:		-rm -f *.o core *~ [@,#]* *.old *.orig *.rej add2libclobber:	clean		-rm -f $(PGEN) *.a tags TAGSdepend:		$(MKDEP) $(CFLAGS) `echo $(DOBJS) | tr ' ' '\012' | \					sed 's|\(.*\)\.o|$(srcdir)/\1.c|'`.PRECIOUS:	Makefileacceler.o: acceler.cgrammar1.o: grammar1.cintrcheck.o: intrcheck.clistnode.o: listnode.cmyreadline.o: myreadline.cnode.o: node.cparser.o: parser.cparsetok.o: parsetok.ctokenizer.o: tokenizer.cbitset.o: bitset.cfirstsets.o: firstsets.cgrammar.o: grammar.cmetagrammar.o: metagrammar.cpgen.o: pgen.cprintgrammar.o: printgrammar.cpgenmain.o: pgenmain.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 + -