blob: 9773722d8e7021b0724139fff284d550210a489d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
LIB1ASMSRC = frv/lib1funcs.S
LIB1ASMFUNCS = _cmpll _cmpf _cmpd _addll _subll _andll _orll _xorll _notll _cmov
# Compile two additional files that are linked with every program
# linked using GCC on systems using COFF or ELF, for the sake of C++
# constructors.
frvbegin$(objext): $(srcdir)/config/frv/frvbegin.c
$(gcc_compile) -c $<
frvend$(objext): $(srcdir)/config/frv/frvend.c
$(gcc_compile) -c $<
|