dos33fsprogs/still_alive/art/Makefile

11 lines
184 B
Makefile
Raw Normal View History

2018-05-21 20:18:05 +00:00
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
2018-05-21 20:18:05 +00:00
clean:
rm -f *.o *~ *.lz4 create_lz4_art