mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-12-27 02:31:00 +00:00
b1238af49d
this will probably upset people
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
|