source: rtems/testsuites/psxtests/psxhdrs/Makefile.am @ b57a6a7

4.115
Last change on this file since b57a6a7 was b57a6a7, checked in by Joel Sherrill <joel.sherrill@…>, on 02/11/15 at 19:59:29

psxhdrs: Reorganize into subdirectories per .h file and rename files

This is a better organization and makes it clearer which file
is testing which method from which header file.

  • Property mode set to 100644
File size: 6.4 KB
Line 
1noinst_LIBRARIES = lib.a
2lib_a_SOURCES =
3
4# methods in <pthread.h>
5lib_a_SOURCES += pthread/pthread_attr_destroy.c
6lib_a_SOURCES += pthread/pthread_attr_getdetachstate.c
7lib_a_SOURCES += pthread/pthread_attr_getguardsize.c
8lib_a_SOURCES += pthread/pthread_attr_getinheritsched.c
9lib_a_SOURCES += pthread/pthread_attr_getschedparam.c
10lib_a_SOURCES += pthread/pthread_attr_getschedpolicy.c
11lib_a_SOURCES += pthread/pthread_attr_getscope.c
12lib_a_SOURCES += pthread/pthread_attr_getstackaddr.c
13lib_a_SOURCES += pthread/pthread_attr_getstack.c
14lib_a_SOURCES += pthread/pthread_attr_getstacksize.c
15lib_a_SOURCES += pthread/pthread_attr_init.c
16lib_a_SOURCES += pthread/pthread_attr_setdetachstate.c
17lib_a_SOURCES += pthread/pthread_attr_setguardsize.c
18lib_a_SOURCES += pthread/pthread_attr_setinheritsched.c
19lib_a_SOURCES += pthread/pthread_attr_setschedparam.c
20lib_a_SOURCES += pthread/pthread_attr_setschedpolicy.c
21lib_a_SOURCES += pthread/pthread_attr_setscope.c
22lib_a_SOURCES += pthread/pthread_attr_setstackaddr.c
23lib_a_SOURCES += pthread/pthread_attr_setstack.c
24lib_a_SOURCES += pthread/pthread_attr_setstacksize.c
25lib_a_SOURCES += pthread/pthread_cancel.c
26lib_a_SOURCES += pthread/pthread_cleanup.c
27lib_a_SOURCES += pthread/pthread_condattr_destroy.c
28lib_a_SOURCES += pthread/pthread_condattr_getpshared.c
29lib_a_SOURCES += pthread/pthread_condattr_init.c
30lib_a_SOURCES += pthread/pthread_condattr_setpshared.c
31lib_a_SOURCES += pthread/pthread_cond_broadcast.c
32lib_a_SOURCES += pthread/pthread_cond_destroy.c
33lib_a_SOURCES += pthread/pthread_cond_init.c
34lib_a_SOURCES += pthread/pthread_cond_signal.c
35lib_a_SOURCES += pthread/pthread_cond_timedwait.c
36lib_a_SOURCES += pthread/pthread_cond_wait.c
37lib_a_SOURCES += pthread/pthread_create.c
38lib_a_SOURCES += pthread/pthread_detach.c
39lib_a_SOURCES += pthread/pthread_equal.c
40lib_a_SOURCES += pthread/pthread_exit.c
41lib_a_SOURCES += pthread/pthread_getcpuclockid.c
42lib_a_SOURCES += pthread/pthread_getschedparam.c
43lib_a_SOURCES += pthread/pthread_getspecific.c
44lib_a_SOURCES += pthread/pthread_join.c
45lib_a_SOURCES += pthread/pthread_key_create.c
46lib_a_SOURCES += pthread/pthread_key_delete.c
47lib_a_SOURCES += pthread/pthread_mutexattr_destroy.c
48lib_a_SOURCES += pthread/pthread_mutexattr_getprioceiling.c
49lib_a_SOURCES += pthread/pthread_mutexattr_getprotocol.c
50lib_a_SOURCES += pthread/pthread_mutexattr_getpshared.c
51lib_a_SOURCES += pthread/pthread_mutexattr_init.c
52lib_a_SOURCES += pthread/pthread_mutexattr_setprioceiling.c
53lib_a_SOURCES += pthread/pthread_mutexattr_setprotocol.c
54lib_a_SOURCES += pthread/pthread_mutexattr_setpshared.c
55lib_a_SOURCES += pthread/pthread_mutex_destroy.c
56lib_a_SOURCES += pthread/pthread_mutex_getprioceiling.c
57lib_a_SOURCES += pthread/pthread_mutex_init.c
58lib_a_SOURCES += pthread/pthread_mutex_lock.c
59lib_a_SOURCES += pthread/pthread_mutex_setprioceiling.c
60lib_a_SOURCES += pthread/pthread_mutex_timedlock.c
61lib_a_SOURCES += pthread/pthread_mutex_trylock.c
62lib_a_SOURCES += pthread/pthread_mutex_unlock.c
63lib_a_SOURCES += pthread/pthread_once.c
64lib_a_SOURCES += pthread/pthread_self.c
65lib_a_SOURCES += pthread/pthread_setcancelstate.c
66lib_a_SOURCES += pthread/pthread_setcanceltype.c
67lib_a_SOURCES += pthread/pthread_setschedparam.c
68lib_a_SOURCES += pthread/pthread_setspecific.c
69lib_a_SOURCES += pthread/pthread_testcancel.c
70# methods in <sched.h>
71lib_a_SOURCES += sched/sched_getparam.c
72lib_a_SOURCES += sched/sched_get_priority_max.c
73lib_a_SOURCES += sched/sched_get_priority_min.c
74lib_a_SOURCES += sched/sched_getscheduler.c
75lib_a_SOURCES += sched/sched_rr_get_interval.c
76lib_a_SOURCES += sched/sched_setparam.c
77lib_a_SOURCES += sched/sched_setscheduler.c
78lib_a_SOURCES += sched/sched_yield.c
79# methods in <signal.h>
80lib_a_SOURCES += signal/pthread_sigmask.c
81lib_a_SOURCES += signal/raise.c
82lib_a_SOURCES += signal/signal.c
83lib_a_SOURCES += signal/sigpending.c
84lib_a_SOURCES += signal/sigprocmask.c
85lib_a_SOURCES += signal/sigsuspend.c
86lib_a_SOURCES += signal/sigtimedwait.c
87lib_a_SOURCES += signal/sigwait.c
88lib_a_SOURCES += signal/sigwaitinfo.c
89# methods in <time.h>
90lib_a_SOURCES += time/asctime.c
91lib_a_SOURCES += time/asctime_r.c
92lib_a_SOURCES += time/clock.c
93lib_a_SOURCES += time/clock_getcpuclockid.c
94lib_a_SOURCES += time/clock_getenable_attr.c
95lib_a_SOURCES += time/clock_getres.c
96lib_a_SOURCES += time/clock_gettime.c
97lib_a_SOURCES += time/clock_setenable_attr.c
98lib_a_SOURCES += time/clock_settime.c
99lib_a_SOURCES += time/ctime.c
100lib_a_SOURCES += time/ctime_r.c
101lib_a_SOURCES += time/difftime.c
102lib_a_SOURCES += time/gmtime.c
103lib_a_SOURCES += time/gmtime_r.c
104lib_a_SOURCES += time/localtime.c
105lib_a_SOURCES += time/localtime_r.c
106lib_a_SOURCES += time/mktime.c
107lib_a_SOURCES += time/nanosleep.c
108lib_a_SOURCES += time/strftime.c
109lib_a_SOURCES += time/time.c
110lib_a_SOURCES += time/timer_create.c
111lib_a_SOURCES += time/timer_delete.c
112lib_a_SOURCES += time/timer_getoverrun.c
113lib_a_SOURCES += time/timer_gettime.c
114lib_a_SOURCES += time/timer_settime.c
115# methods in <unistd.h>
116lib_a_SOURCES += unistd/alarm.c
117lib_a_SOURCES += unistd/fdatasync.c
118lib_a_SOURCES += unistd/fsync.c
119lib_a_SOURCES += unistd/getegid.c
120lib_a_SOURCES += unistd/geteuid.c
121lib_a_SOURCES += unistd/getgid.c
122lib_a_SOURCES += unistd/getgroups.c
123lib_a_SOURCES += unistd/getlogin.c
124lib_a_SOURCES += unistd/getlogin_r.c
125lib_a_SOURCES += unistd/getpgrp.c
126lib_a_SOURCES += unistd/getpid.c
127lib_a_SOURCES += unistd/getppid.c
128lib_a_SOURCES += unistd/getuid.c
129lib_a_SOURCES += unistd/pause.c
130lib_a_SOURCES += unistd/setgid.c
131lib_a_SOURCES += unistd/setpgid.c
132lib_a_SOURCES += unistd/setsid.c
133lib_a_SOURCES += unistd/setuid.c
134lib_a_SOURCES += unistd/sleep.c
135lib_a_SOURCES += unistd/sync.c
136lib_a_SOURCES += unistd/ualarm.c
137lib_a_SOURCES += unistd/usleep.c
138
139if HAS_NETWORKING
140# methods in <sys/socket.h>
141lib_a_SOURCES += sys/socket/accept.c
142lib_a_SOURCES += sys/socket/bind.c
143lib_a_SOURCES += sys/socket/connect.c
144lib_a_SOURCES += sys/socket/getpeername.c
145lib_a_SOURCES += sys/socket/getsockname.c
146lib_a_SOURCES += sys/socket/getsockopt.c
147lib_a_SOURCES += sys/socket/listen.c
148lib_a_SOURCES += sys/socket/recv.c
149lib_a_SOURCES += sys/socket/recvfrom.c
150lib_a_SOURCES += sys/socket/recvmsg.c
151lib_a_SOURCES += sys/socket/send.c
152lib_a_SOURCES += sys/socket/sendmsg.c
153lib_a_SOURCES += sys/socket/sendto.c
154lib_a_SOURCES += sys/socket/setsockopt.c
155lib_a_SOURCES += sys/socket/shutdown.c
156lib_a_SOURCES += sys/socket/socket.c
157lib_a_SOURCES += sys/socket/socketpair.c
158endif
159
160include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
161include $(top_srcdir)/../automake/compile.am
162include $(top_srcdir)/../automake/leaf.am
163
164include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.