source: rtems/c/src/tests/samples/hello/Makefile.am @ 6212465d

4.104.114.84.95
Last change on this file since 6212465d was 6212465d, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/00 at 16:11:24

2000-09-04 Ralf Corsepius <corsepiu@…>

  • base_mp/node1/Makefile.am, base_mp/node2/Makefile.am, base_sp/Makefile.am, cdtest/Makefile.am, hello/Makefile.am, minimum/Makefile.am, paranoia/Makefile.am, ticker/Makefile.am, unlimited/Makefile.am: Include compile.am
  • Property mode set to 100644
File size: 735 bytes
Line 
1##
2##  $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7SAMPLE = hello
8PGM = ${ARCH}/$(SAMPLE).exe
9
10MANAGERS = io
11
12C_FILES = init.c
13C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
14
15H_FILES = system.h
16noinst_HEADERS = $(H_FILES)
17
18DOCTYPES = doc scn
19DOCS = $(DOCTYPES:%=$(SAMPLE).%)
20
21SRCS = $(DOCS) $(C_FILES) $(H_FILES)
22OBJS = $(C_O_FILES)
23
24PRINT_SRCS = $(DOCS)
25
26include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
27include $(top_srcdir)/../../../../automake/compile.am
28include $(RTEMS_ROOT)/make/leaf.cfg
29include $(top_srcdir)/sample.am
30
31#
32# (OPTIONAL) Add local stuff here using +=
33#
34
35all-local: ${ARCH} $(TMPINSTALL_FILES)
36
37${PGM}: $(OBJS) $(LINK_FILES)
38        $(make-exe)
39
40EXTRA_DIST = $(C_FILES) $(DOCS)
41
42include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.