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


                      







                          
                            

                             







                                           
#
# 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)