source: rtems/c/src/tests/sptests/spsize/Makefile.in @ 3a8915e

4.104.114.84.95
Last change on this file since 3a8915e was 3a8915e, checked in by Joel Sherrill <joel.sherrill@…>, on 08/06/99 at 17:55:25

Patch rtems-rc-19990709-6-diff from Ralf Corsepius <corsepiu@…>
applied. This modified many Makefiles and custom files and makes many more
settings (network, multiprocessing, etc) gnerated by autoconf.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8top_builddir = ..
9subdir = spsize
10
11RTEMS_ROOT = @RTEMS_ROOT@
12PROJECT_ROOT = @PROJECT_ROOT@
13
14VPATH = @srcdir@
15
16MANAGERS = io
17
18# C source names, if any, go here -- minus the .c
19C_PIECES = init getint size
20C_FILES = $(C_PIECES:%=%.c)
21C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
22
23H_FILES = system.h
24
25SRCS = $(DOCS) $(C_FILES) $(H_FILES)
26OBJS = $(C_O_FILES)
27
28PGM = ${ARCH}/size.exe
29
30include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
31include $(RTEMS_ROOT)/make/leaf.cfg
32
33INSTALL_CHANGE = @INSTALL_CHANGE@
34PACKHEX = @PACKHEX@
35
36#
37# (OPTIONAL) Add local stuff here using +=
38#
39
40DEFINES +=
41CPPFLAGS +=
42CFLAGS +=
43
44LD_PATHS +=
45LD_LIBS +=
46LDFLAGS +=
47
48#
49# Add your list of files to delete here.  The config files
50#  already know how to delete some stuff, so you may want
51#  to just run 'make clean' first to see what gets missed.
52#  'make clobber' already includes 'make clean'
53#
54
55CLEAN_ADDITIONS +=
56CLOBBER_ADDITIONS +=
57
58all: ${ARCH} $(SRCS) $(PGM)
59        $(INSTALL_VARIANT) -m 755 ${PGM} $(PROJECT_RELEASE)/tests
60
61${PGM}: $(OBJS) $(LINK_FILES)
62        $(make-exe)
63
64Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
65        cd $(top_builddir) \
66         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.