aboutsummaryrefslogblamecommitdiff
path: root/doc/examples/Makefile
blob: 0f3d1851ebdc83bf06c7cce8d16c7aeb2a806098 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                

                            







                                           
#
# Author: Lasse Collin
#
# This file has been put into the public domain.
# You can do whatever you want with this file.
#

CC = c99
CFLAGS = -g
LDFLAGS = -llzma

PROGS = \
	01_compress_easy \
	02_decompress \
	03_compress_custom \
	04_compress_easy_mt

all: $(PROGS)

.c:
	$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)

clean:
	-rm -f $(PROGS)