/
githubmirror
/
xz
Обзор
Документация
Войти
/
githubmirror
/
xz
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v5.2.13
doc/examples/Makefile
24 строки
337 B
Lasse Collin
Docs: Add example program for threaded encoding.
29 янв 2014, 22:19
29 янв 2014, 22:19
5876ca2
Код
Авторство
О чём код?
# # 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)