source: rtems/c/src/lib/libbsp/i386/go32/startup/Makefile.in @ b584751

4.104.114.84.95
Last change on this file since b584751 was b584751, checked in by Joel Sherrill <joel.sherrill@…>, on 04/15/97 at 17:37:12

Switched all bsps which had an implementation of sbrk.c which only
returned an error to using a single shared copy of this file.

  • Property mode set to 100644
File size: 982 bytes
RevLine 
[254b4450]1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
[b584751]8VPATH=@srcdir@:../../../shared/@srcdir@
[254b4450]9
10PGM=${ARCH}/startup.rel
11
12# C source names, if any, go here -- minus the .c
13C_PIECES=bspstart sbrk setvec
14C_FILES=$(C_PIECES:%=%.c)
15C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
16
17H_FILES=
18
19SRCS=$(C_FILES) $(H_FILES)
20OBJS=$(C_O_FILES)
21
22include $(RTEMS_CUSTOM)
23include $(PROJECT_ROOT)/make/leaf.cfg
24
25#
26# (OPTIONAL) Add local stuff here using +=
27#
28
29DEFINES  +=
30CPPFLAGS +=
31CFLAGS   +=
32
33LD_PATHS  +=
34LD_LIBS   +=
35LDFLAGS   +=
36
37#
38# Add your list of files to delete here.  The config files
39#  already know how to delete some stuff, so you may want
40#  to just run 'make clean' first to see what gets missed.
41#  'make clobber' already includes 'make clean'
42#
43
44CLEAN_ADDITIONS +=
45CLOBBER_ADDITIONS +=
46
47${PGM}: ${SRCS} ${OBJS}
48        $(make-rel)
49all:    ${ARCH} $(SRCS) $(PGM)
50        $(INSTALL) ${PROJECT_RELEASE}/lib
51
52# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
53install:  all
54
Note: See TracBrowser for help on using the repository browser.