dos33fsprogs/demos/megademo/music/Makefile
Vince Weaver b1238af49d re-arranged the entire directory structure
this will probably upset people
2021-01-05 15:29:31 -05:00

12 lines
195 B
Makefile

CC = gcc
CFLAGS = -g -O2 -Wall
decode_pt3: decode_pt3.o
$(CC) $(LFLAGS) -o decode_pt3 decode_pt3.o
decode_pt3.o: decode_pt3.c
$(CC) $(CFLAGS) -c decode_pt3.c
clean:
rm -f *.o *~ decode_pt3