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

4.104.114.84.95
Last change on this file since d2632274 was 674c900, checked in by Joel Sherrill <joel.sherrill@…>, on 12/10/97 at 16:58:00

Modified a lot of files to take a first cut at supporting building from
any directory in the build tree. The only variable which must be set
before the command "gmake" is invoked is RTEMS_BSP (e.g. RTEMS_BSP=erc32).

  • 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@
8VPATH = @srcdir@
9RTEMS_ROOT = @RTEMS_ROOT@
10PROJECT_ROOT = @PROJECT_ROOT@
11RTEMS_CUSTOM = $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
12
13SAMPLE=hello
14PGM=${ARCH}/$(SAMPLE).exe
15
16MANAGERS=io
17
18# C source names, if any, go here -- minus the .c
19C_PIECES=init
20C_FILES=$(C_PIECES:%=%.c)
21C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
22
23H_FILES=system.h
24
25DOCTYPES=doc scn
26DOCS=$(DOCTYPES:%=$(SAMPLE).%)
27
28SRCS=$(DOCS) $(C_FILES) $(H_FILES)
29OBJS=$(C_O_FILES)
30
31PRINT_SRCS=$(DOCS)
32
33PGM=${ARCH}/$(SAMPLE).exe
34
35include $(RTEMS_CUSTOM)
36include $(PROJECT_ROOT)/make/leaf.cfg
37
38#
39# (OPTIONAL) Add local stuff here using +=
40#
41
42DEFINES  +=
43CPPFLAGS +=
44CFLAGS   +=
45
46LD_PATHS  +=
47LD_LIBS   +=
48LDFLAGS   +=
49
50#
51# Add your list of files to delete here.  The config files
52#  already know how to delete some stuff, so you may want
53#  to just run 'make clean' first to see what gets missed.
54#  'make clobber' already includes 'make clean'
55#
56
57CLEAN_ADDITIONS +=
58CLOBBER_ADDITIONS +=
59
60all:    ${ARCH} $(SRCS) $(PGM)
61        $(INSTALL_VARIANT) -m 555 ${PGM} ${PROJECT_RELEASE}/tests
62        $(INSTALL_VARIANT) -m 555 ${PGM} ${PROJECT_RELEASE}/samples
63
64${PGM}: $(OBJS) $(LINK_FILES)
65        $(make-exe)
Note: See TracBrowser for help on using the repository browser.