debian: Prepare for upload
[xz/debian.git] / doc / examples / Makefile
blob0f3d1851ebdc83bf06c7cce8d16c7aeb2a806098
2 # Author: Lasse Collin
4 # This file has been put into the public domain.
5 # You can do whatever you want with this file.
8 CC = c99
9 CFLAGS = -g
10 LDFLAGS = -llzma
12 PROGS = \
13 01_compress_easy \
14 02_decompress \
15 03_compress_custom \
16 04_compress_easy_mt
18 all: $(PROGS)
20 .c:
21 $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
23 clean:
24 -rm -f $(PROGS)