mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
689e0228ba
Translations and doc/xz-file-format.txt and doc/lzma-file-format.txt were not touched. COPYING.0BSD was added.
22 lines
255 B
Makefile
22 lines
255 B
Makefile
#
|
|
# Author: Lasse Collin
|
|
#
|
|
|
|
CC = c99
|
|
CFLAGS = -g
|
|
LDFLAGS = -llzma
|
|
|
|
PROGS = \
|
|
01_compress_easy \
|
|
02_decompress \
|
|
03_compress_custom \
|
|
04_compress_easy_mt \
|
|
11_file_info
|
|
|
|
all: $(PROGS)
|
|
|
|
.c:
|
|
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
|
|
|
|
clean:
|
|
-rm -f $(PROGS)
|