4.104.114.84.95
Last change
on this file since 9a11e1f was
254b4450,
checked in by Joel Sherrill <joel.sherrill@…>, on 04/01/97 at 23:07:52
|
This set of changes is the build of what was required to convert to
GNU autoconf. This is the first large step in allowing an RTEMS
user to perform a one-tree build (per crossgcc FAQ) including RTEMS
in the build process. With this change RTEMS is configured in
built in the same style as the GNU tools, yet retains the basic
structure of its traditional Makefiles (ala Tony Bennett).
Jiri Gaisler (jgais@…) deserves (and received)
a big thank you for doing this.
There are still issues to be resolved but as of this commit, all target
which can be built on a linux host have been using a modified version
of the source Jiri submitted. This source was merged and most targets
built in the tree before this commit.
There are some issues which remain to be resolved but they are primarily
related to host OS dependencies, script issues, the use of gawk
for hack_specs, and the dependence on gcc snapshots. These will
be resolved.
|
-
Property mode set to
100644
|
File size:
857 bytes
|
Line | |
---|
1 | # |
---|
2 | # $Id$ |
---|
3 | # |
---|
4 | |
---|
5 | @SET_MAKE@ |
---|
6 | srcdir = @srcdir@ |
---|
7 | top_srcdir = @top_srcdir@ |
---|
8 | VPATH=@srcdir@ |
---|
9 | |
---|
10 | # we use host compiler here for genoffsets. Hopefully it has same alignment!! |
---|
11 | USE_HOST_COMPILER=yes |
---|
12 | |
---|
13 | # C source names, if any, go here -- minus the .c |
---|
14 | C_PIECES=print_dump |
---|
15 | C_FILES=$(C_PIECES:%=%.c) |
---|
16 | C_O_FILES=$(C_PIECES:%=${ARCH}/%.o) |
---|
17 | |
---|
18 | H_FILES= |
---|
19 | |
---|
20 | SRCS=$(C_FILES) $(H_FILES) |
---|
21 | OBJS=$(C_O_FILES) |
---|
22 | |
---|
23 | PGMS=${ARCH}/print_dump |
---|
24 | |
---|
25 | include $(RTEMS_CUSTOM) |
---|
26 | include $(PROJECT_ROOT)/make/leaf.cfg |
---|
27 | |
---|
28 | # |
---|
29 | # (OPTIONAL) Add local stuff here using += |
---|
30 | # |
---|
31 | |
---|
32 | DEFINES += |
---|
33 | CPPFLAGS += |
---|
34 | CFLAGS += |
---|
35 | |
---|
36 | LD_PATHS += |
---|
37 | LD_LIBS += |
---|
38 | LDFLAGS += |
---|
39 | |
---|
40 | # |
---|
41 | # Add your list of files to delete here. |
---|
42 | # |
---|
43 | |
---|
44 | CLEAN_ADDITIONS += |
---|
45 | CLOBBER_ADDITIONS += |
---|
46 | |
---|
47 | all: ${ARCH} $(SRCS) $(PGMS) |
---|
48 | $(INSTALL) -m 555 ${PGMS} ${PROJECT_RELEASE}/bin |
---|
49 | |
---|
50 | # Install the program(s), appending _g or _p as appropriate. |
---|
51 | # for include files, just use $(INSTALL) |
---|
Note: See
TracBrowser
for help on using the repository browser.