URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib/] [newlib/] [libc/] [machine/] [w65/] [Makefile.in] - Rev 39
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile
# Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#
#
# Makefile for newlib/libc/machine/h8500
#
srcdir = .
SHELL = /bin/sh
TOP = ../../..
SRCTOP = ../../..
TARGETDOC = ../../targetdep.tex
#### Host, target, and site specific Makefile fragments come in here.
###
OFILES=udivhi3.o umodhi3.o smulhi3.o lshrhi.o sdivhi3.o mulsi3.o divsi3.o cmpsi.o
# to support SunOS VPATH
all: lib.a
lib.a: $(OFILES)
rm -f $@
$(AR) $(AR_FLAGS) $@ $(OFILES) $(COPYOFILES)
doc:
clean mostlyclean:
$(RM) $(OFILES) *~ lib.a
distclean maintainer-clean realclean: clean
rm -f Makefile config.status
Makefile: Makefile.in $(host_makefile_frag) $(target_makefile_frag)
$(SHELL) config.status
udivhi3.o:udivhi3.s
umodhi3.o:umodhi3.s
smulhi3.o:smulhi3.s
lshrhi.o:lshrhi.s
sdivhi3.o:sdivhi3.s
mulsi3.o:mulsi3.c
divsi3.o:divsi3.c
cmpsi.o:cmpsi.c
Go to most recent revision | Compare with Previous | Blame | View Log