source: rtems/testsuites/psxtests/psxhdrs/Makefile.am @ 187a0744

5
Last change on this file since 187a0744 was 187a0744, checked in by Christian Mauderer <Christian.Mauderer@…>, on 05/02/16 at 12:49:35

libcsupport: Add dummy for setgroups().

The dummy for setgroups() allows applications using it to build (for example
civetweb webserver).

  • Property mode set to 100644
File size: 6.5 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_getconcurrency.c
42lib_a_SOURCES += pthread/pthread_getcpuclockid.c
43lib_a_SOURCES += pthread/pthread_getschedparam.c
44lib_a_SOURCES += pthread/pthread_getspecific.c
45lib_a_SOURCES += pthread/pthread_join.c
46lib_a_SOURCES += pthread/pthread_key_create.c
47lib_a_SOURCES += pthread/pthread_key_delete.c
48lib_a_SOURCES += pthread/pthread_mutexattr_destroy.c
49lib_a_SOURCES += pthread/pthread_mutexattr_getprioceiling.c
50lib_a_SOURCES += pthread/pthread_mutexattr_getprotocol.c
51lib_a_SOURCES += pthread/pthread_mutexattr_getpshared.c
52lib_a_SOURCES += pthread/pthread_mutexattr_init.c
53lib_a_SOURCES += pthread/pthread_mutexattr_setprioceiling.c
54lib_a_SOURCES += pthread/pthread_mutexattr_setprotocol.c
55lib_a_SOURCES += pthread/pthread_mutexattr_setpshared.c
56lib_a_SOURCES += pthread/pthread_mutex_destroy.c
57lib_a_SOURCES += pthread/pthread_mutex_getprioceiling.c
58lib_a_SOURCES += pthread/pthread_mutex_init.c
59lib_a_SOURCES += pthread/pthread_mutex_lock.c
60lib_a_SOURCES += pthread/pthread_mutex_setprioceiling.c
61lib_a_SOURCES += pthread/pthread_mutex_timedlock.c
62lib_a_SOURCES += pthread/pthread_mutex_trylock.c
63lib_a_SOURCES += pthread/pthread_mutex_unlock.c
64lib_a_SOURCES += pthread/pthread_once.c
65lib_a_SOURCES += pthread/pthread_self.c
66lib_a_SOURCES += pthread/pthread_setcancelstate.c
67lib_a_SOURCES += pthread/pthread_setcanceltype.c
68lib_a_SOURCES += pthread/pthread_setconcurrency.c
69lib_a_SOURCES += pthread/pthread_setschedparam.c
70lib_a_SOURCES += pthread/pthread_setspecific.c
71lib_a_SOURCES += pthread/pthread_testcancel.c
72# methods in <sched.h>
73lib_a_SOURCES += sched/sched_getparam.c
74lib_a_SOURCES += sched/sched_get_priority_max.c
75lib_a_SOURCES += sched/sched_get_priority_min.c
76lib_a_SOURCES += sched/sched_getscheduler.c
77lib_a_SOURCES += sched/sched_rr_get_interval.c
78lib_a_SOURCES += sched/sched_setparam.c
79lib_a_SOURCES += sched/sched_setscheduler.c
80lib_a_SOURCES += sched/sched_yield.c
81# methods in <signal.h>
82lib_a_SOURCES += signal/pthread_sigmask.c
83lib_a_SOURCES += signal/raise.c
84lib_a_SOURCES += signal/signal.c
85lib_a_SOURCES += signal/sigpending.c
86lib_a_SOURCES += signal/sigprocmask.c
87lib_a_SOURCES += signal/sigsuspend.c
88lib_a_SOURCES += signal/sigtimedwait.c
89lib_a_SOURCES += signal/sigwait.c
90lib_a_SOURCES += signal/sigwaitinfo.c
91# methods in <time.h>
92lib_a_SOURCES += time/asctime.c
93lib_a_SOURCES += time/asctime_r.c
94lib_a_SOURCES += time/clock.c
95lib_a_SOURCES += time/clock_getcpuclockid.c
96lib_a_SOURCES += time/clock_getres.c
97lib_a_SOURCES += time/clock_gettime.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/setgroups.c
132lib_a_SOURCES += unistd/setpgid.c
133lib_a_SOURCES += unistd/setsid.c
134lib_a_SOURCES += unistd/setuid.c
135lib_a_SOURCES += unistd/sleep.c
136lib_a_SOURCES += unistd/sync.c
137lib_a_SOURCES += unistd/ualarm.c
138lib_a_SOURCES += unistd/usleep.c
139
140if HAS_NETWORKING
141# methods in <sys/socket.h>
142lib_a_SOURCES += sys/socket/accept.c
143lib_a_SOURCES += sys/socket/bind.c
144lib_a_SOURCES += sys/socket/connect.c
145lib_a_SOURCES += sys/socket/getpeername.c
146lib_a_SOURCES += sys/socket/getsockname.c
147lib_a_SOURCES += sys/socket/getsockopt.c
148lib_a_SOURCES += sys/socket/listen.c
149lib_a_SOURCES += sys/socket/recv.c
150lib_a_SOURCES += sys/socket/recvfrom.c
151lib_a_SOURCES += sys/socket/recvmsg.c
152lib_a_SOURCES += sys/socket/send.c
153lib_a_SOURCES += sys/socket/sendmsg.c
154lib_a_SOURCES += sys/socket/sendto.c
155lib_a_SOURCES += sys/socket/setsockopt.c
156lib_a_SOURCES += sys/socket/shutdown.c
157lib_a_SOURCES += sys/socket/socket.c
158lib_a_SOURCES += sys/socket/socketpair.c
159endif
160
161include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
162include $(top_srcdir)/../automake/compile.am
163include $(top_srcdir)/../automake/leaf.am
164
165include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.