source: rtems/c/src/exec/sapi/src/Makefile.in @ 421dfef6

4.104.114.84.95
Last change on this file since 421dfef6 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: 805 bytes
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
13C_PIECES= debug extension fatal init io posixapi rtemsapi
14C_FILES=$(C_PIECES:%=%.c)
15C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
16
17SRCS=$(C_FILES)
18OBJS=$(C_O_FILES)
19
20include $(RTEMS_CUSTOM)
21include $(RTEMS_ROOT)/make/lib.cfg
22
23#
24# Add local stuff here using +=
25#
26
27DEFINES  +=
28CPPFLAGS +=
29CFLAGS   += $(CFLAGS_OS_V)
30
31#
32# Add your list of files to delete here.  The config files
33#  already know how to delete some stuff, so you may want
34#  to just run 'make clean' first to see what gets missed.
35#  'make clobber' already includes 'make clean'
36#
37
38CLEAN_ADDITIONS +=
39CLOBBER_ADDITIONS +=
40
41all:    ${ARCH} $(SRCS) ${OBJS}
Note: See TracBrowser for help on using the repository browser.