| 1 |
282 |
jeremybenn |
# -*- makefile -*-
|
| 2 |
|
|
#
|
| 3 |
|
|
# Copyright (C) 2001, 2004 Free Software Foundation, Inc.
|
| 4 |
|
|
#
|
| 5 |
|
|
# This file is part of GCC.
|
| 6 |
|
|
#
|
| 7 |
|
|
# GCC is free software; you can redistribute it and/or modify
|
| 8 |
|
|
# it under the terms of the GNU General Public License as published by
|
| 9 |
|
|
# the Free Software Foundation; either version 3, or (at your option)
|
| 10 |
|
|
# any later version.
|
| 11 |
|
|
#
|
| 12 |
|
|
# GCC is distributed in the hope that it will be useful,
|
| 13 |
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 14 |
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 15 |
|
|
# GNU General Public License for more details.
|
| 16 |
|
|
#
|
| 17 |
|
|
# You should have received a copy of the GNU General Public License
|
| 18 |
|
|
# along with GCC; see the file COPYING3. If not see
|
| 19 |
|
|
# .
|
| 20 |
|
|
|
| 21 |
|
|
# SImode arithmetic and logical routines, HImode bit counting routines.
|
| 22 |
|
|
LIB2FUNCS_EXTRA = \
|
| 23 |
|
|
$(srcdir)/config/stormy16/stormy16-lib2-udivmodsi4.c \
|
| 24 |
|
|
$(srcdir)/config/stormy16/stormy16-lib2-divsi3.c \
|
| 25 |
|
|
$(srcdir)/config/stormy16/stormy16-lib2-modsi3.c \
|
| 26 |
|
|
$(srcdir)/config/stormy16/stormy16-lib2-udivsi3.c \
|
| 27 |
|
|
$(srcdir)/config/stormy16/stormy16-lib2-umodsi3.c \
|
| 28 |
|
|
$(srcdir)/config/stormy16/stormy16-lib2-ashlsi3.c \
|
| 29 |
|
|
$(srcdir)/config/stormy16/stormy16-lib2-ashrsi3.c \
|
| 30 |
|
|
$(srcdir)/config/stormy16/stormy16-lib2-lshrsi3.c \
|
| 31 |
|
|
$(srcdir)/config/stormy16/stormy16-lib2-popcounthi2.c \
|
| 32 |
|
|
$(srcdir)/config/stormy16/stormy16-lib2-parityhi2.c \
|
| 33 |
|
|
$(srcdir)/config/stormy16/stormy16-lib2-clzhi2.c \
|
| 34 |
|
|
$(srcdir)/config/stormy16/stormy16-lib2-ctzhi2.c \
|
| 35 |
|
|
$(srcdir)/config/stormy16/stormy16-lib2-ffshi2.c
|
| 36 |
|
|
|
| 37 |
|
|
# Floating point emulation libraries.
|
| 38 |
|
|
FPBIT = fp-bit.c
|
| 39 |
|
|
DPBIT = dp-bit.c
|
| 40 |
|
|
|
| 41 |
|
|
fp-bit.c: $(srcdir)/config/fp-bit.c
|
| 42 |
|
|
echo '#define FLOAT' > fp-bit.c
|
| 43 |
|
|
cat $(srcdir)/config/fp-bit.c >> fp-bit.c
|
| 44 |
|
|
|
| 45 |
|
|
dp-bit.c: $(srcdir)/config/fp-bit.c
|
| 46 |
|
|
cat $(srcdir)/config/fp-bit.c > dp-bit.c
|
| 47 |
|
|
|
| 48 |
|
|
TARGET_LIBGCC2_CFLAGS = -Os
|