4.104.114.84.95
Last change
on this file since fc56b90c was
fc56b90c,
checked in by Joel Sherrill <joel.sherrill@…>, on 02/11/98 at 21:57:20
|
Don't install tools using variant name.
|
-
Property mode set to
100644
|
File size:
1.2 KB
|
Line | |
---|
1 | # |
---|
2 | # $Id$ |
---|
3 | # |
---|
4 | |
---|
5 | @SET_MAKE@ |
---|
6 | srcdir = @srcdir@ |
---|
7 | VPATH = @srcdir@ |
---|
8 | RTEMS_ROOT = @top_srcdir@ |
---|
9 | PROJECT_ROOT = @PROJECT_ROOT@ |
---|
10 | exec_prefix = @exec_prefix@ |
---|
11 | bindir = @bindir@ |
---|
12 | libdir = @libdir@ |
---|
13 | includedir = @includedir@ |
---|
14 | manext = 1 |
---|
15 | mandir = @mandir@/man$(manext) |
---|
16 | |
---|
17 | |
---|
18 | VPATH=@srcdir@ |
---|
19 | |
---|
20 | |
---|
21 | # we use host compiler in this directory |
---|
22 | USE_HOST_COMPILER=yes |
---|
23 | |
---|
24 | # C source names, if any, go here -- minus the .c |
---|
25 | C_PIECES=bin2boot |
---|
26 | C_FILES=$(C_PIECES:%=%.c) |
---|
27 | C_O_FILES=$(C_PIECES:%=$(ARCH)/%.o) |
---|
28 | |
---|
29 | H_FILES= |
---|
30 | |
---|
31 | SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) |
---|
32 | OBJS=$(C_O_FILES) $(CC_O_FILES) $(S_O_FILES) |
---|
33 | |
---|
34 | PGMS=$(ARCH)/bin2boot |
---|
35 | |
---|
36 | include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg |
---|
37 | include $(RTEMS_ROOT)/make/leaf.cfg |
---|
38 | |
---|
39 | # |
---|
40 | # (OPTIONAL) Add local stuff here using += |
---|
41 | # |
---|
42 | |
---|
43 | DEFINES += |
---|
44 | CPPFLAGS += |
---|
45 | CFLAGS += |
---|
46 | |
---|
47 | LD_PATHS += |
---|
48 | LD_LIBS += |
---|
49 | LDFLAGS += |
---|
50 | |
---|
51 | # |
---|
52 | # Add your list of files to delete here. The config files |
---|
53 | # already know how to delete some stuff, so you may want |
---|
54 | # to just run 'make clean' first to see what gets missed. |
---|
55 | # 'make clobber' already includes 'make clean' |
---|
56 | # |
---|
57 | |
---|
58 | CLEAN_ADDITIONS += $(HOST_ARCH) |
---|
59 | CLOBBER_ADDITIONS += |
---|
60 | |
---|
61 | all: $(ARCH) $(SRCS) $(PGMS) |
---|
62 | $(INSTALL) -m 555 $(PGMS) ${PROJECT_RELEASE}/build-tools |
---|
63 | uudecode < $(srcdir)/diskboot.uue \ |
---|
64 | > $(PROJECT_RELEASE)/build-tools/diskboot.exe |
---|
Note: See
TracBrowser
for help on using the repository browser.