source: rtems/c/src/tests/samples/base_sp/Makefile.in @ fbaf52eb

4.104.114.84.95
Last change on this file since fbaf52eb was cb5bfe4, checked in by Joel Sherrill <joel.sherrill@…>, on 01/20/98 at 19:41:09

Removed CONFIG_DIR and PROJECT_HOME directories.

  • 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=base_sp
14PGM=${ARCH}/$(SAMPLE).exe
15
16MANAGERS=io
17
18# C source names, if any, go here -- minus the .c
19C_PIECES=init apptask
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
33include $(RTEMS_CUSTOM)
34include $(RTEMS_ROOT)/make/leaf.cfg
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 555 ${PGM} ${PROJECT_RELEASE}/tests
60        $(INSTALL_VARIANT) -m 555 ${PGM} ${PROJECT_RELEASE}/samples
61
62${PGM}: $(OBJS) $(LINK_FILES)
63        $(make-exe)
64
Note: See TracBrowser for help on using the repository browser.