Add SPDX license identifiers to files under tests/ossfuzz
[xz/debian.git] / doc / examples / Makefile
blobf5b98788ece821f1727ec3644c30f7115bd9148f
1 # SPDX-License-Identifier: 0BSD
2 # Author: Lasse Collin
4 CC = c99
5 CFLAGS = -g
6 LDFLAGS = -llzma
8 PROGS = \
9 01_compress_easy \
10 02_decompress \
11 03_compress_custom \
12 04_compress_easy_mt \
13 11_file_info
15 all: $(PROGS)
17 .c:
18 $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
20 clean:
21 -rm -f $(PROGS)