source: rtems/c/src/tests/psxtests/psxhdrs/Makefile.in @ 254b4450

4.104.114.84.95
Last change on this file since 254b4450 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: 1.9 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8VPATH=@srcdir@
9
10# C source names, if any, go here -- minus the
11C_PIECES=\
12  clock01 clock02 clock03 clock04 clock05 \
13  cond01 cond02 cond03 cond04 cond05 cond06 cond07 \
14  cond08 cond09 cond10 \
15  key01 key02 key03 key04 \
16  mutex01 mutex02 mutex03 mutex04 mutex05 mutex06 mutex07 \
17  mutex08 mutex09 mutex10 mutex11 mutex12 mutex13 mutex14 \
18  mutex15 mutex16 \
19  pthread01 pthread02 pthread03 pthread04 pthread05 pthread06 \
20  pthread07 pthread08 pthread09 pthread10 pthread11 pthread12 \
21  pthread13 pthread14 pthread15 pthread16 pthread17 pthread18 \
22  pthread19 pthread20 pthread21 pthread22 pthread23 pthread24 \
23  pthread25 pthread26 pthread27 pthread28 pthread29 pthread30 \
24  pthread31 pthread32 pthread33 pthread34 pthread35 pthread36 \
25  proc01 proc02 proc03 proc04 proc05 proc06 proc07 proc08 \
26  proc09 proc10 proc11 proc12 proc13 proc14 \
27  sched01 sched02 sched03 sched04 sched05 sched06 sched07 sched08 \
28  signal01 signal02 signal03 signal04 signal05 signal06 signal07 \
29  signal08 signal09 signal10 signal11 signal12 signal13 signal14 \
30  signal15 signal16 signal17 signal18 signal19 signal20 signal21 \
31  signal22 \
32  time01 time02 time03 time04 time05 time06 time07 time08 time09 \
33  time10 time11 time12 time13 \
34  timer01 timer02 timer03 timer04 timer05 timer06
35C_FILES=$(C_PIECES:%=%.c)
36C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
37
38H_FILES=
39
40SRCS=$(C_FILES) $(H_FILES)
41
42SRCS=$(C_FILES) $(H_FILES)
43OBJS=$(C_O_FILES)
44
45include $(RTEMS_CUSTOM)
46include $(PROJECT_ROOT)/make/lib.cfg
47
48#
49# Add local stuff here using +=
50#
51
52DEFINES  +=
53CPPFLAGS +=
54CFLAGS   +=
55
56#
57# Add your list of files to delete here.  The config files
58#  already know how to delete some stuff, so you may want
59#  to just run 'make clean' first to see what gets missed.
60#  'make clobber' already includes 'make clean'
61#
62
63CLEAN_ADDITIONS += $(LIB)
64CLOBBER_ADDITIONS +=
65
66all:    ${ARCH} $(SRCS) ${OBJS}
Note: See TracBrowser for help on using the repository browser.