2024-02-12 10:09:10 -05:00
|
|
|
# SPDX-License-Identifier: 0BSD
|
2012-06-14 03:52:33 -04:00
|
|
|
# Author: Lasse Collin
|
|
|
|
|
|
|
|
CC = c99
|
|
|
|
CFLAGS = -g
|
|
|
|
LDFLAGS = -llzma
|
|
|
|
|
|
|
|
PROGS = \
|
|
|
|
01_compress_easy \
|
|
|
|
02_decompress \
|
2014-01-29 13:19:41 -05:00
|
|
|
03_compress_custom \
|
2017-04-24 13:20:11 -04:00
|
|
|
04_compress_easy_mt \
|
|
|
|
11_file_info
|
2012-06-14 03:52:33 -04:00
|
|
|
|
|
|
|
all: $(PROGS)
|
|
|
|
|
|
|
|
.c:
|
|
|
|
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-rm -f $(PROGS)
|