repo.or.cz
/
xz
/
debian.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
debian: Prepare for upload
[xz/debian.git]
/
doc
/
examples
/
Makefile
blob
0f3d1851ebdc83bf06c7cce8d16c7aeb2a806098
1
#
2
# Author: Lasse Collin
3
#
4
# This file has been put into the public domain.
5
# You can do whatever you want with this file.
6
#
7
8
CC
=
c99
9
CFLAGS
= -
g
10
LDFLAGS
= -
llzma
11
12
PROGS
=
\
13
01
_compress_easy \
14
02
_decompress \
15
03
_compress_custom \
16
04
_compress_easy_mt
17
18
all
: $(
PROGS
)
19
20
.c
:
21
$(
CC
) $(
CFLAGS
) -
o
$
@
$< $(
LDFLAGS
)
22
23
clean
:
24
-
rm
-
f
$(
PROGS
)