source: rtems/c/src/tests/psxtests/psxhdrs/Makefile.in @ 3a8915e

4.104.114.84.95
Last change on this file since 3a8915e was 3a8915e, checked in by Joel Sherrill <joel.sherrill@…>, on 08/06/99 at 17:55:25

Patch rtems-rc-19990709-6-diff from Ralf Corsepius <corsepiu@…>
applied. This modified many Makefiles and custom files and makes many more
settings (network, multiprocessing, etc) gnerated by autoconf.

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