summaryrefslogtreecommitdiff
path: root/led/timer/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'led/timer/Makefile')
-rw-r--r--led/timer/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/led/timer/Makefile b/led/timer/Makefile
new file mode 100644
index 0000000..4ce2a92
--- /dev/null
+++ b/led/timer/Makefile
@@ -0,0 +1,27 @@
+#
+# $Id$
+#
+
+#
+# RTEMS_MAKEFILE_PATH is typically set in an environment variable
+#
+
+PGM=${ARCH}/timer.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)