summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Bourdeauducq <sebastien@milkymist.org>2011-07-30 17:28:57 +0200
committerSebastien Bourdeauducq <sebastien@milkymist.org>2011-07-30 17:28:57 +0200
commit875d6f89d85cc4a4c4dd6bf649b83230cf2db144 (patch)
treec8ae224f4582c9332c35f6624a32bae308572f28
parent113c1217865682ab081ab8a2f7deabdaa9f9869f (diff)
added missing file
-rw-r--r--Makefile.rtems76
1 files changed, 76 insertions, 0 deletions
diff --git a/Makefile.rtems b/Makefile.rtems
new file mode 100644
index 0000000..e3d5347
--- /dev/null
+++ b/Makefile.rtems
@@ -0,0 +1,76 @@
+include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
+include $(RTEMS_MAKEFILE_PATH)/make/target.cfg
+
+INSTALL_BASE = $(RTEMS_MAKEFILE_PATH)/lib
+
+BUILDDIR = build-$(RTEMS_BSP)
+
+CPPFLAGS += -I. -Idirect -Idirect/rtems
+
+DEPFLAGS = -MT $@ -MD -MP -MF $(basename $@).d
+
+GCCFLAGS = -I . -B $(INSTALL_BASE) -specs bsp_specs -qrtems
+
+CFLAGS += $(DEPFLAGS) $(GCCFLAGS)
+
+INCLUDES = rtems/rtems_yaffs.h \
+ direct/yportenv.h \
+ direct/ydirectenv.h \
+ direct/yaffs_osglue.h \
+ direct/yaffs_hweight.h \
+ direct/yaffscfg.h \
+ direct/yaffs_list.h \
+ direct/yaffsfs.h \
+ yaffs_guts.h \
+ yaffs_packedtags2.h \
+ yaffs_ecc.h
+
+LIB = $(BUILDDIR)/libyaffs2.a
+LIB_PIECES = yaffs_ecc \
+ yaffs_guts \
+ yaffs_packedtags1 \
+ yaffs_tagscompat \
+ yaffs_packedtags2 \
+ yaffs_tagsvalidity \
+ yaffs_nand \
+ yaffs_checkptrw \
+ direct/yaffs_qsort \
+ yaffs_nameval \
+ yaffs_attribs \
+ yaffs_allocator \
+ yaffs_bitmap \
+ yaffs_yaffs1 \
+ yaffs_yaffs2 \
+ yaffs_verify \
+ direct/yaffs_hweight \
+ rtems/rtems_yaffs \
+ rtems/rtems_yaffs_os_context \
+ rtems/rtems_yaffs_os_glue
+LIB_OBJS = $(LIB_PIECES:%=$(BUILDDIR)/%.o)
+LIB_DEPS = $(LIB_PIECES:%=$(BUILDDIR)/%.d)
+
+all: $(BUILDDIR) $(LIB)
+
+$(BUILDDIR):
+ mkdir $(BUILDDIR)
+ mkdir $(BUILDDIR)/direct
+ mkdir $(BUILDDIR)/rtems
+
+$(LIB): $(LIB_OBJS)
+ $(AR) rcu $@ $^
+ $(RANLIB) $@
+
+$(BUILDDIR)/%.o: %.c
+ $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
+
+clean:
+ rm -rf $(BUILDDIR)
+
+install: all
+ mkdir -p $(INSTALL_BASE)/include/yaffs
+ install -m 644 -t $(INSTALL_BASE) $(LIB)
+ install -m 644 -t $(INSTALL_BASE)/include/yaffs $(INCLUDES)
+
+.PHONY: clean install
+
+-include $(LIB_DEPS)