source: rtems/c/src/lib/libcpu/m68k/m68040/fpsp/Makefile.in @ e1d8abb

4.104.114.84.95
Last change on this file since e1d8abb was e1d8abb, checked in by Joel Sherrill <joel.sherrill@…>, on 09/07/99 at 13:45:03

Applied patch rtems-rc-19990820-6.diff.gz from
Ralf Corsepius <corsepiu@…> which converted many
Makefile.in's to Makefile.am's. This added a lot of files.

  • Property mode set to 100644
File size: 1.7 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8top_builddir = ../../..
9subdir = m68k/m68040/fpsp
10
11RTEMS_ROOT = @RTEMS_ROOT@
12PROJECT_ROOT = @PROJECT_ROOT@
13
14VPATH = @srcdir@
15
16PGM = ${ARCH}/fpsp.rel
17
18# C source names, if any, go here -- minus the .c
19C_PIECES = rtems_fpsp
20C_FILES = $(C_PIECES:%=%.c)
21C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
22
23H_FILES =
24
25# Assembly source names, if any, go here -- minus the .S
26S_PIECES = bindec binstr bugfix decbin do_func gen_except get_op kernel_ex \
27    res_func round rtems_skel sacos sasin satan satanh scale scosh setox \
28    sgetem sint slog2 slogn smovecr srem_mod ssin ssinh stan stanh sto_res \
29    stwotox tbldo util x_bsun x_fline x_operr x_ovfl x_snan x_store x_unfl \
30    x_unimp x_unsupp
31S_FILES = $(S_PIECES:%=%.S)
32S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
33
34SRCS = $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
35OBJS = $(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
36
37include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
38include $(RTEMS_ROOT)/make/leaf.cfg
39
40INSTALL_CHANGE = @INSTALL_CHANGE@
41
42#
43# (OPTIONAL) Add local stuff here using +=
44#
45
46DEFINES +=
47CPPFLAGS +=
48CFLAGS += $(CFLAGS_OS_V)
49
50LD_PATHS +=
51LD_LIBS +=
52LDFLAGS +=
53
54#
55# Add your list of files to delete here.  The config files
56#  already know how to delete some stuff, so you may want
57#  to just run 'make clean' first to see what gets missed.
58#  'make clobber' already includes 'make clean'
59#
60
61CLEAN_ADDITIONS +=
62CLOBBER_ADDITIONS +=
63
64${PGM}: ${SRCS} ${OBJS}
65        $(make-rel)
66
67all: ${ARCH} $(SRCS) $(PGM)
68
69# the .rel file built here will be put into libbsp.a by
70#    libbsp/hppa/BSP/wrapup/Makefile
71install: all
72
73Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
74        cd $(top_builddir) \
75         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.