summaryrefslogtreecommitdiffstats
path: root/c/src/exec/itron/src/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/itron/src/Makefile.in')
-rw-r--r--c/src/exec/itron/src/Makefile.in83
1 files changed, 83 insertions, 0 deletions
diff --git a/c/src/exec/itron/src/Makefile.in b/c/src/exec/itron/src/Makefile.in
new file mode 100644
index 0000000000..9cd743e34a
--- /dev/null
+++ b/c/src/exec/itron/src/Makefile.in
@@ -0,0 +1,83 @@
+#
+# $Id$
+#
+
+@SET_MAKE@
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+top_builddir = ..
+subdir = src
+
+RTEMS_ROOT = @RTEMS_ROOT@
+PROJECT_ROOT = @PROJECT_ROOT@
+
+VPATH = @srcdir@
+
+TASK_C_PIECES = task cre_tsk del_tsk sta_tsk ext_tsk exd_tsk ter_tsk \
+ dis_dsp ena_dsp chg_pri rot_rdq rel_wai get_tid ref_tsk
+
+TASKSYNC_C_PIECES = sus_tsk rsm_tsk frsm_tsk slp_tsk tslp_tsk wup_tsk \
+ can_wup
+
+SEMAPHORE_C_PIECES = itronsem
+
+EVENTFLAGS_C_PIECES = eventflags
+
+MAILBOX_C_PIECES = mbox
+
+MSGBUFFER_C_PIECES = msgbuffer
+
+RENDEZVOUS_C_PIECES = port
+
+INTERRUPT_C_PIECES = itronintr
+
+VARIABLE_MEMORY_POOL_C_PIECES = vmempool
+
+FIXED_MEMORY_POOL_C_PIECES = fmempool
+
+TIME_C_PIECES = itrontime
+
+CONFIGURATION_C_PIECES = sysmgmt
+
+NETWORK_C_PIECES = network
+
+C_PIECES = $(TASK_C_PIECES) $(TASKSYNC_C_PIECES) $(SEMAPHORE_C_PIECES) \
+ $(EVENTFLAGS_C_PIECES) $(MAILBOX_C_PIECES) $(MSGBUFFER_C_PIECES) \
+ $(RENDEZVOUS_C_PIECES) $(INTERRUPT_C_PIECES) \
+ $(VARIABLE_MEMORY_POOL_C_PIECES) $(FIXED_MEMORY_POOL_C_PIECES) \
+ $(TIME_C_PIECES)
+
+C_FILES = $(C_PIECES:%=%.c)
+C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
+
+SRCS = $(C_FILES) $(CC_FILES)
+OBJS = $(C_O_FILES) $(CC_O_FILES)
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(RTEMS_ROOT)/make/lib.cfg
+
+INSTALL_CHANGE = @INSTALL_CHANGE@
+
+#
+# Add local stuff here using +=
+#
+
+DEFINES += -D__RTEMS_INSIDE__
+CPPFLAGS +=
+CFLAGS += $(CFLAGS_OS_V)
+
+#
+# Add your list of files to delete here. The config files
+# already know how to delete some stuff, so you may want
+# to just run 'make clean' first to see what gets missed.
+# 'make clobber' already includes 'make clean'
+#
+
+CLEAN_ADDITIONS +=
+CLOBBER_ADDITIONS +=
+
+all: ${ARCH} $(SRCS) ${OBJS}
+
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ cd $(top_builddir) \
+ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status