makefile.in

来自「标准c库代码,可以应用于各个系统提供了大量的基本函数」· IN 代码 · 共 130 行

IN
130
字号
# Makefile for newlib/libc/sys/sun4.# Copyright (c) 1994, 1995 Cygnus Support.# All rights reserved.## Redistribution and use in source and binary forms are permitted# provided that the above copyright notice and this paragraph are# duplicated in all such forms and that any documentation,# advertising materials, and other materials related to such# distribution and use acknowledge that the software was developed# at Cygnus Support, Inc.  Cygnus Support, Inc. may not be used to# endorse or promote products derived from this software without# specific prior written permission.# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.srcdir = .SHELL = /bin/shTOP = ../../..SRCTOP = ../../..TARGETDOC = ../../targetdep.texCOPYOFILES=\	Ovfork.o \	_exit.o \	_sigvec.o \	abort.o \	access.o \	cerror.o \	chmod.o \	chown.o \	close.o \	creat.o \	dup.o \	dup2.o \	errlst.o \	execl.o \	execle.o \	execv.o \	execve.o \	execvp.o \	fork.o \	fstat.o \	getdtablesize.o \	getpid.o \	getrusage.o  \	gettimeofday.o \	ieee_globals.o \	ioctl.o \	isatty.o \	kill.o \	link.o \	lseek.o \	open.o \	pipe.o \	popen.o \	read.o \	sbrk.o \	setitimer.o \	sigblock.o \	signal.o \	sigpause.o \	sigsetjmp.o \	sigsetmask.o \	sigtramp.o \	sigvec.o \	sleep.o \	start_float.o \	stat.o \	time.o \	times.o \	umask.o \	unlink.o \	utime.o \	utimes.o \	wait.o \	wait3.o \	wait4.o \	write.o \	rem.o \	multiply.o \	umultiply.o# These files are from Sun's libc.a, but the must be renamed because they# conflict with other library .o's.  They are renamed to xxxS.o.COPYRENAMEOFILES = divS.oCOPYOMFILES=ieee_flags.oOFILES=_main.o ieee.oCFILES=_main.c ieee.c#### Host, target, and site specific Makefile fragments come in here.###all: lib.a crt0.olib.a: $(OFILES) $(COPYOFILES) $(COPYOMFILES) $(COPYRENAMEOFILES)	rm -f $@	$(AR) $(AR_FLAGS) $@ $(OFILES) $(COPYOFILES) $(COPYOMFILES) $(COPYRENAMEOFILES)$(COPYOFILES):	ar x /lib/libc.a $(COPYOFILES) $(COPYRENAMEOFILES):	ar x /lib/libc.a $(COPYRENAMEFILES:S.o=.o)	for f in $(COPYRENAMEOFILES); do mv `basename $$f S.o`.o $$f; done$(COPYOMFILES):	ar x /lib/libm.a $(COPYOMFILES) crt0.o:	cp /lib/crt0.o crt0.oclean mostlyclean:	$(RM) *.o lib.adistclean realclean: clean	rm -f Makefile config.statusdoc:Makefile: Makefile.in $(host_makefile_frag) $(target_makefile_frag)	$(SHELL) config.status# to support SunOS VPATH_main.o: _main.cieee.o: ieee.c

⌨️ 快捷键说明

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