summaryrefslogtreecommitdiffstats
path: root/posix_api/psx_pthread_report/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'posix_api/psx_pthread_report/Makefile')
-rw-r--r--posix_api/psx_pthread_report/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/posix_api/psx_pthread_report/Makefile b/posix_api/psx_pthread_report/Makefile
new file mode 100644
index 0000000..6f83abb
--- /dev/null
+++ b/posix_api/psx_pthread_report/Makefile
@@ -0,0 +1,20 @@
+#
+# RTEMS_MAKEFILE_PATH is typically set in an environment variable
+#
+
+PGM=${ARCH}/psx_pthread_report.exe
+
+# C source names
+CSRCS = pthread_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)