summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psxhdrs/Makefile.in
blob: a47ffccb4f000178e499f5247b8cfe0b8f0d3560 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#
#  $Id$
#

@SET_MAKE@
srcdir = @srcdir@
VPATH = @srcdir@
RTEMS_ROOT = @top_srcdir@
PROJECT_ROOT = @PROJECT_ROOT@

# C source names, if any, go here -- minus the
C_PIECES=\
  clock01 clock02 clock03 clock04 clock05 \
  cond01 cond02 cond03 cond04 cond05 cond06 cond07 \
  cond08 cond09 cond10 \
  key01 key02 key03 key04 \
  mutex01 mutex02 mutex03 mutex04 mutex05 mutex06 mutex07 \
  mutex08 mutex09 mutex10 mutex11 mutex12 mutex13 mutex14 \
  mutex15 mutex16 \
  pthread01 pthread02 pthread03 pthread04 pthread05 pthread06 \
  pthread07 pthread08 pthread09 pthread10 pthread11 pthread12 \
  pthread13 pthread14 pthread15 pthread16 pthread17 pthread18 \
  pthread19 pthread20 pthread21 pthread22 pthread23 pthread24 \
  pthread25 pthread26 pthread27 pthread28 pthread29 pthread30 \
  pthread31 pthread32 pthread33 pthread34 pthread35 pthread36 \
  proc01 proc02 proc03 proc04 proc05 proc06 proc07 proc08 \
  proc09 proc10 proc11 proc12 proc13 proc14 \
  sched01 sched02 sched03 sched04 sched05 sched06 sched07 sched08 \
  signal01 signal02 signal03 signal04 signal05 signal06 signal07 \
  signal08 signal09 signal10 signal11 signal12 signal13 signal14 \
  signal15 signal16 signal17 signal18 signal19 signal20 signal21 \
  signal22 \
  time01 time02 time03 time04 time05 time06 time07 time08 time09 \
  time10 time11 time12 time13 \
  timer01 timer02 timer03 timer04 timer05 timer06 
C_FILES=$(C_PIECES:%=%.c)
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)

H_FILES=

SRCS=$(C_FILES) $(H_FILES) 

SRCS=$(C_FILES) $(H_FILES)
OBJS=$(C_O_FILES)

include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
include $(RTEMS_ROOT)/make/lib.cfg

#
# Add local stuff here using +=
#

DEFINES  +=
CPPFLAGS +=
CFLAGS   +=

#
# Add your list of files to delete here.  The config files
#  already know how to delete some stuff, so you may want
#  to just run 'make clean' first to see what gets missed.
#  'make clobber' already includes 'make clean'
#

CLEAN_ADDITIONS += $(LIB)
CLOBBER_ADDITIONS +=

all:	${ARCH} $(SRCS) ${OBJS}