mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-01 05:31:52 +00:00
21 lines
214 B
Makefile
21 lines
214 B
Makefile
|
CC = gcc
|
||
|
CFLAGS = -O2 -Wall -g
|
||
|
|
||
|
all: dump_text
|
||
|
|
||
|
###
|
||
|
|
||
|
dump_text: dump_text.o
|
||
|
$(CC) -o dump_text dump_text.o $(LFLAGS)
|
||
|
|
||
|
dump_text.o: dump_text.c
|
||
|
$(CC) $(CFLAGS) -c dump_text.c
|
||
|
|
||
|
###
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o dump_text
|
||
|
|
||
|
|
||
|
|