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

📄 makefile

📁 早期freebsd实现
💻
字号:
#	@(#)Makefile	8.1 (Berkeley) 6/6/93## make file for pdx## For best results edit this file in vi with tabstop=4.## The file "defs.h" is included by all, it has most of the type# declarations (since you can't have forward type references in C).# It also defines various things of general use and includes <stdio.h>.## The file "library.c" contains routines which are generally useful# and are independent from pdx.## N.B.: My version of cerror in "cerror.s" automatically catches certain#	errors such as out of memory, I/O error.  If you re-make pdx with#	the standard cerror, the program could fault unexpectedly.PROG=	pdxCFLAGS=	-DOBJ -DADDR32 -I. -I${.CURDIR} -I${.CURDIR}/../src.PATH:	${.CURDIR}/breakpoint ${.CURDIR}/object ${.CURDIR}/mappings \	${.CURDIR}/main ${.CURDIR}/symtab ${.CURDIR}/process \	${.CURDIR}/command ${.CURDIR}/source ${.CURDIR}/tree ${.CURDIR}/sym \	${.CURDIR}/runtime ${.CURDIR}/machine ${.CURDIR}/../srcSRCS=	address.c assign.c attributes.c bp.c bpact.c build.c callproc.c \	entry.c eval.c fixbps.c frame.c functab.c isactive.c library.c \	main.c maketypes.c misc.c nextaddr.c objaddr.c opinfo.c optab.c \	predicates.c print.c printdata.c printdecl.c printerror.c \	printinst.c printnews.c printval.c prtree.c pstatus.c ptrace.c \	rdwr.c readobj.c readsym.c remake.c resume.c runcont.c setbp.c \	setbps.c source.c srcfile.c srcline.c start.c status.c step.c \	symtab.c tfree.c tr_equal.c tracestop.c trcond.c tree.c trinfo.c \	wheredump.c which.cOBJS+=	cerror.o grammar.o token.oCLEANFILES+=h02opcs.h grammar.o opc token.o y.tab.c y.tab.hcerror.o:	${CC} -c ${.CURDIR}/${MACHINE}/${.PREFIX}.sh02opcs.h: opc ${.CURDIR}/../src/OPnames.h	./opc > ${.TARGET}opc: opc.c	${CC} ${CFLAGS} ${.ALLSRC} -o ${.TARGET}.include <bsd.prog.mk>token.o: grammar.o${OBJS} .depend: h02opcs.h

⌨️ 快捷键说明

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