summaryrefslogtreecommitdiffstats
path: root/posix_api/psx_sched_report/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'posix_api/psx_sched_report/Makefile')
-rw-r--r--posix_api/psx_sched_report/Makefile30
1 files changed, 3 insertions, 27 deletions
diff --git a/posix_api/psx_sched_report/Makefile b/posix_api/psx_sched_report/Makefile
index 96dd47f..f69f38d 100644
--- a/posix_api/psx_sched_report/Makefile
+++ b/posix_api/psx_sched_report/Makefile
@@ -1,37 +1,14 @@
#
-# Makefile
-#
-
-#
# RTEMS_MAKEFILE_PATH is typically set in an environment variable
#
-EXEC=psx_sched_report.exe
-PGM=${ARCH}/$(EXEC)
-
-# optional managers required
-MANAGERS=all
+PGM=${ARCH}/psx_sched_report.exe
# C source names
-CSRCS = test.c
-COBJS_ = $(CSRCS:.c=.o)
-COBJS = $(COBJS_:%=${ARCH}/%)
-
-# C++ source names
-CXXSRCS =
-CXXOBJS_ = $(CXXSRCS:.cc=.o)
-CXXOBJS = $(CXXOBJS_:%=${ARCH}/%)
-
-# AS source names
-ASSRCS =
-ASOBJS_ = $(ASSRCS:.s=.o)
-ASOBJS = $(ASOBJS_:%=${ARCH}/%)
-
-# Libraries
-LIBS = -lrtemsall -lc
+CSRCS = psx_sched_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
@@ -41,4 +18,3 @@ all: ${ARCH} $(PGM)
$(PGM): $(OBJS)
$(make-exe)
-