diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2010-07-17 09:32:19 +0300 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2010-07-17 09:32:19 +0300 |
commit | 74149643b934e2294e7878fbd2f180835f250e41 (patch) | |
tree | 7939408bdf9b2eb1b7c1518c46b4424f7acc2f4e /lib/Makefile | |
parent | 518f6832a38e29aa7547d77d9963d29373e3fc61 (diff) |
Add forgotten Makefile
My fault, forgot to run git add.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile new file mode 100644 index 0000000..82194e4 --- /dev/null +++ b/lib/Makefile @@ -0,0 +1,22 @@ +# +# Makefile for libmtd +# + +SUBDIRS = + +# CFLAGS += -Werror +CPPFLAGS += -I../include +LIBS = libmtd +TARGETS = libmtd.a + +include ../common.mk + +$(BUILDDIR)/libmtd.a: $(addprefix $(BUILDDIR)/,\ + libmtd.o libmtd_legacy.o crc32.o fec.o) + +clean:: + rm -f $(addsuffix .a, $(LIBS)) + +install:: + +uninstall: |