blob: b364a5a25b98b32afe6d095f5c312f1e2efee776 (
plain)
1
2
3
4
5
6
7
8
9
|
# 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 $<
|