mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-06 06:30:36 +00:00
4b59ef7ae7
with the power out
15 lines
188 B
Makefile
15 lines
188 B
Makefile
CC = gcc
|
|
CFLAGS = -Wall -O2
|
|
LFLAGS =
|
|
|
|
all: creator
|
|
|
|
creator: creator.o
|
|
$(CC) -o creator creator.o $(LFLAGS)
|
|
|
|
creator.o: creator.c
|
|
$(CC) $(CFLAGS) -c creator.c
|
|
|
|
clean:
|
|
rm -f *.o creator
|