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