source: rtems/c/src/lib/libcpu/m68k/m68040/fpsp/Makefile.am @ bb18b95

4.104.114.84.95
Last change on this file since bb18b95 was 4e36a2f, checked in by Joel Sherrill <joel.sherrill@…>, on 01/31/00 at 15:27:02

Patches rtems-rc-20000118-3.diff and rtems-rc-20000118-4.diff from
Ralf Corsepius <corsepiu@…> that contain:

  • Modifications, (minor) corrections, cleanups to most existing Makefile.ams
  • Adds automake support to all remaining BSPs which have not yet been converted to automake.
  • Makefile.am for all remaining wrapup/Makefile.ams
  • Property mode set to 100644
File size: 1.4 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7PGM = $(ARCH)/fpsp.rel
8
9include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
10include $(top_srcdir)/../../../../../automake/lib.am
11
12C_FILES = rtems_fpsp.c
13C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
14
15H_FILES = fpsp.defs
16
17S_FILES = bindec.S binstr.S bugfix.S decbin.S do_func.S gen_except.S \
18    get_op.S kernel_ex.S res_func.S round.S rtems_skel.S sacos.S sasin.S \
19    satan.S satanh.S scale.S scosh.S setox.S sgetem.S sint.S slog2.S slogn.S \
20    smovecr.S srem_mod.S ssin.S ssinh.S stan.S stanh.S sto_res.S stwotox.S \
21    tbldo.S util.S x_bsun.S x_fline.S x_operr.S x_ovfl.S x_snan.S x_store.S \
22    x_unfl.S x_unimp.S x_unsupp.S
23S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
24
25OBJS = $(C_O_FILES) $(S_O_FILES)
26
27#
28# (OPTIONAL) Add local stuff here using +=
29#
30
31AM_CFLAGS += $(CFLAGS_OS_V)
32
33$(PGM): $(OBJS)
34        $(make-rel)
35
36if m68040
37all-local: $(ARCH) $(OBJS) $(PGM)
38endif
39
40.PRECIOUS: $(PGM)
41
42EXTRA_DIST = README bindec.S binstr.S bugfix.S decbin.S do_func.S fpsp.defs \
43    gen_except.S get_op.S kernel_ex.S res_func.S round.S rtems_fpsp.c \
44    rtems_skel.S sacos.S sasin.S satan.S satanh.S scale.S scosh.S setox.S \
45    sgetem.S sint.S slog2.S slogn.S smovecr.S srem_mod.S ssin.S ssinh.S \
46    stan.S stanh.S sto_res.S stwotox.S tbldo.S util.S x_bsun.S x_fline.S \
47    x_operr.S x_ovfl.S x_snan.S x_store.S x_unfl.S x_unimp.S x_unsupp.S
48
49include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.