summaryrefslogtreecommitdiff
path: root/posix_api/Makefile
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2018-09-26 09:43:51 -0500
committerJoel Sherrill <joel@rtems.org>2018-09-26 18:03:33 -0500
commitf4ce641b374a20b650c31f60d03424d21d7fcbdf (patch)
tree9e297257ae3097dd06baa259fac09e0097a8fc65 /posix_api/Makefile
parent4b7512a8cf813671b4fde8548703f8afc70855fe (diff)
Add various programs to report default attributes for various POSIX objects
Closes #3531.
Diffstat (limited to 'posix_api/Makefile')
-rw-r--r--posix_api/Makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/posix_api/Makefile b/posix_api/Makefile
index b070ea9..8af26dc 100644
--- a/posix_api/Makefile
+++ b/posix_api/Makefile
@@ -4,5 +4,14 @@ include $(RTEMS_SHARE)/make/directory.cfg
# If the POSIX API isn't enabled, we can't build these
ifeq ($(RTEMS_HAS_POSIX_API),yes)
- SUBDIRS = psx_example_1 psx_example_2 psx_example_3 psx_sched_report
+ SUBDIRS = psx_example_1
+ SUBDIRS += psx_example_2
+ SUBDIRS += psx_example_3
+ SUBDIRS += psx_barrier_report
+ SUBDIRS += psx_condvar_report
+ SUBDIRS += psx_mqueue_report
+ SUBDIRS += psx_mutex_report
+ SUBDIRS += psx_pthread_report
+ SUBDIRS += psx_rwlock_report
+ SUBDIRS += psx_sched_report
endif