summaryrefslogtreecommitdiff
path: root/posix_api/psx_condvar_report/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/psx_condvar_report/Makefile
parent4b7512a8cf813671b4fde8548703f8afc70855fe (diff)
Add various programs to report default attributes for various POSIX objects
Closes #3531.
Diffstat (limited to 'posix_api/psx_condvar_report/Makefile')
-rw-r--r--posix_api/psx_condvar_report/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/posix_api/psx_condvar_report/Makefile b/posix_api/psx_condvar_report/Makefile
new file mode 100644
index 0000000..27fa8bd
--- /dev/null
+++ b/posix_api/psx_condvar_report/Makefile
@@ -0,0 +1,20 @@
+#
+# RTEMS_MAKEFILE_PATH is typically set in an environment variable
+#
+
+PGM=${ARCH}/psx_condvar_report.exe
+
+# C source names
+CSRCS = condvar_attr_report.c rtems_config.c
+COBJS = $(CSRCS:%.c=${ARCH}/%.o)
+
+include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
+include $(RTEMS_CUSTOM)
+include $(PROJECT_ROOT)/make/leaf.cfg
+
+OBJS= $(COBJS) $(CXXOBJS) $(ASOBJS)
+
+all: ${ARCH} $(PGM)
+
+$(PGM): $(OBJS)
+ $(make-exe)