summaryrefslogtreecommitdiffstats
path: root/ticker/ticker_stackchk/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ticker/ticker_stackchk/Makefile')
-rw-r--r--ticker/ticker_stackchk/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/ticker/ticker_stackchk/Makefile b/ticker/ticker_stackchk/Makefile
new file mode 100644
index 0000000..4347705
--- /dev/null
+++ b/ticker/ticker_stackchk/Makefile
@@ -0,0 +1,23 @@
+#
+# RTEMS_MAKEFILE_PATH is typically set in an environment variable
+#
+
+PGM=${ARCH}/ticker.exe
+
+# optional managers required
+MANAGERS=all
+
+# C source names
+CSRCS = init.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)