dos33fsprogs/still_alive/art/Makefile
Vince Weaver e6c001287d sa: try to encrypt the ascii art
turns out it is too slow, and we can't re-use the lz4 code
without duplicating it completely.
2018-05-23 16:04:27 -04:00

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