source: rtems/c/src/tests/psxtests/psxhdrs/Makefile.in @ 196094eb

4.104.114.84.95
Last change on this file since 196094eb was 196094eb, checked in by Joel Sherrill <joel.sherrill@…>, on 04/19/99 at 13:19:14

Patch from Ralf Corsepius <corsepiu@…>:

This one is an enhancement to acpolish.

It replaces some Makefile variables by others variable in Makefile.ins
(tries to use unique name for some variables). It therefore eases
parsing Makefile.ins for further automatic Makefile.in conversions in
future.

To apply:

cd <rtems-source-tree>
sh <path-to>/rtems-rc-19990407-8.sh
./autogen

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