mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-04 05:05:13 +00:00
e6c001287d
turns out it is too slow, and we can't re-use the lz4 code without duplicating it completely.
11 lines
184 B
Makefile
11 lines
184 B
Makefile
CC = gcc
|
|
CFLAGS = -O2 -Wall
|
|
|
|
all: create_lz4_art
|
|
|
|
create_lz4_art: create_lz4_art.c
|
|
$(CC) $(CFLAGS) -o create_lz4_art create_lz4_art.c -llz4
|
|
|
|
clean:
|
|
rm -f *.o *~ *.lz4 create_lz4_art
|