mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-12 12:07:53 +00:00
12 lines
195 B
Makefile
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
|