X7ROOT File Manager
Current Path:
/usr/share/doc/xz/examples
usr
/
share
/
doc
/
xz
/
examples
/
📁
..
📄
00_README.txt
(1.01 KB)
📄
01_compress_easy.c
(9.31 KB)
📄
02_decompress.c
(8.7 KB)
📄
03_compress_custom.c
(4.91 KB)
📄
04_compress_easy_mt.c
(5.09 KB)
📄
Makefile
(337 B)
Editing: Makefile
# # 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)
Upload File
Create Folder