OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
doc
/
liblzma-dev
/
examples
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
01/31/2023 12:38:19 PM
rwxr-xr-x
📄
00_README.txt
1.01 KB
09/29/2015 10:57:36 AM
rw-r--r--
📄
01_compress_easy.c.gz
3.45 KB
09/29/2015 10:57:36 AM
rw-r--r--
📄
02_decompress.c.gz
3.2 KB
09/29/2015 10:57:36 AM
rw-r--r--
📄
03_compress_custom.c.gz
1.92 KB
09/29/2015 10:57:36 AM
rw-r--r--
📄
04_compress_easy_mt.c.gz
2 KB
09/29/2015 10:57:36 AM
rw-r--r--
📄
Makefile
337 bytes
09/29/2015 10:57:36 AM
rw-r--r--
Editing: Makefile
Close
# # 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)