make_ext4fs/libsparse/Makefile
Jo-Philipp Wich 40550da058 libsparse: add Makefile
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-04-04 22:48:01 +02:00

22 lines
266 B
Makefile

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