Added Cyg-Win
This commit is contained in:
parent
82cbc206eb
commit
413c315806
10586 changed files with 3806249 additions and 0 deletions
21
Agent-Windows/OGP64/usr/share/doc/xz/examples/Makefile
Normal file
21
Agent-Windows/OGP64/usr/share/doc/xz/examples/Makefile
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# SPDX-License-Identifier: 0BSD
|
||||
# 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue