summaryrefslogtreecommitdiff
path: root/ticker/ticker/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ticker/ticker/Makefile')
-rw-r--r--ticker/ticker/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/ticker/ticker/Makefile b/ticker/ticker/Makefile
new file mode 100644
index 0000000..5a92e90
--- /dev/null
+++ b/ticker/ticker/Makefile
@@ -0,0 +1,27 @@
+#
+# $Id$
+#
+
+#
+# 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)