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

4.104.114.84.95
Last change on this file since 7150f00f was 9fbba98, checked in by Joel Sherrill <joel.sherrill@…>, on 04/16/97 at 17:47:48

Fixed path which points to shared directory for all BSPs.

  • Property mode set to 100644
File size: 1.3 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
13# C_PIECES=bspstart sbrk setvec except i386-stub
14C_PIECES=bspstart sbrk setvec
15C_FILES=$(C_PIECES:%=%.c)
16C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
17
18H_FILES=
19
20
21# Assembly source names, if any, go here -- minus the .s
22# removed initcsu piece, ldsegs piece and flush
23S_PIECES= gdt idt interrupts interns reset_jmp
24 
25S_FILES=$(S_PIECES:%=%.s)
26S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
27
28SRCS=$(srcdir)/linkcmds $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
29OBJS=$(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
30
31include $(RTEMS_CUSTOM)
32include $(PROJECT_ROOT)/make/leaf.cfg
33
34#
35# (OPTIONAL) Add local stuff here using +=
36#
37
38#DEFINES  += -DPRINTON
39DEFINES  += -I$(srcdir)
40CPPFLAGS +=
41CFLAGS   += -g
42
43LD_PATHS  +=
44LD_LIBS   +=
45LDFLAGS   +=
46
47#
48# Add your list of files to delete here.  The config files
49#  already know how to delete some stuff, so you may want
50#  to just run 'make clean' first to see what gets missed.
51#  'make clobber' already includes 'make clean'
52#
53
54CLEAN_ADDITIONS +=
55CLOBBER_ADDITIONS +=
56
57${PGM}: ${SRCS} ${OBJS}
58        $(make-rel)
59all:    ${ARCH} $(SRCS) $(PGM)
60        $(INSTALL) $(srcdir)/linkcmds ${PROJECT_RELEASE}/lib
61
62# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
63install:  all
64
Note: See TracBrowser for help on using the repository browser.