mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-14 13:33:48 +00:00
11 lines
178 B
Makefile
11 lines
178 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
|
|
|
|
clean:
|
|
rm -f *.o *~ *.lz4 create_lz4_art
|