source: rtems/c/src/lib/libbsp/i386/pc386/startup/Makefile.in @ 7150f00f

4.104.114.84.95
Last change on this file since 7150f00f was 7150f00f, checked in by Joel Sherrill <joel.sherrill@…>, on 12/01/97 at 22:06:48

Inclusion of PC386 BSP submitted by Pedro Miguel Da Cruz Neto Romano
<pmcnr@…> and Jose Rufino <ruf@…>
of NavIST (http://pandora.ist.utl.pt/).

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