source: rtems/c/src/tests/samples/hello/Makefile.in @ 08b5f55

4.104.114.84.95
Last change on this file since 08b5f55 was 08b5f55, checked in by Joel Sherrill <joel.sherrill@…>, on 07/26/99 at 20:31:49

Patch from Ralf Corsepius <corsepiu@…>:

A bug in acpolish made it into rtems-rc-19990709-0.diff, which
unfortunately affects all Makefile.ins:

  • The maintainer mode conditional was erroniously applied to the dependencies of "Makefile".

In case you already checked in rtems-rc-19990709-0.diff to CVS you have
to check in all Makefile.ins again after applying the patch below :).

Please apply the patch below as follows:

patch -p1 < rtems-rc-19990709-1.diff
tools/update/rtems-polish.sh -ac

Note: There is no need to rerun your tests if you have used
--enable-maintainer-mode to configure RTEMS, because this patch converts
all Makefile.ins to the same settings as used for
--enable-maintainer-mode.

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