This repository has been archived on 2024-11-01. You can view files and clone it, but cannot push or open issues or pull requests.
make_ext4fs_old/libsparse/Makefile

22 lines
266 B
Makefile
Raw Permalink Normal View History

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