dos33fsprogs/music/still_alive/art/Makefile
Vince Weaver b1238af49d re-arranged the entire directory structure
this will probably upset people
2021-01-05 15:29:31 -05: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