From: Jo-Philipp Wich Date: Sat, 4 Apr 2015 20:48:01 +0000 (+0200) Subject: libsparse: add Makefile X-Git-Url: http://git.openwrt.org/?p=project%2Fmake_ext4fs.git;a=commitdiff_plain;h=40550da058150eee158f9ed6d2e9b712ee0f8f1b libsparse: add Makefile Signed-off-by: Jo-Philipp Wich --- diff --git a/libsparse/Makefile b/libsparse/Makefile new file mode 100644 index 0000000..2fd4c30 --- /dev/null +++ b/libsparse/Makefile @@ -0,0 +1,21 @@ +CC ?= gcc +AR ?= ar + +CFLAGS += -Iinclude + +OBJ := \ + backed_block.o \ + output_file.o \ + sparse.o \ + sparse_crc32.o \ + sparse_err.o \ + sparse_read.o + +%.o: %.c + $(CC) $(CFLAGS) -c -o $@ $^ + +libsparse.a: $(OBJ) + $(AR) rcs $@ $^ + +clean: + rm -f $(OBJ) libsparse.a