File: Makefile

package info (click to toggle)
xz-utils 5.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,036 kB
  • sloc: ansic: 34,516; sh: 6,765; makefile: 940; asm: 303; sed: 39
file content (21 lines) | stat: -rw-r--r-- 283 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)