✏️ 正在编辑: Makefile
路径:
/usr/share/doc/xz/examples/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)
💾 保存文件
← 返回文件管理器