20 lines
349 B
Makefile
Vendored
20 lines
349 B
Makefile
Vendored
# MZFDTool - Sharp MZ-700 Floppy Disk image tool
|
|
# (c) 2002 BKK, 2026 Philip Smart
|
|
#
|
|
# Usage:
|
|
# make Build MZFDTool
|
|
# make clean Remove build artifacts
|
|
|
|
CC = gcc
|
|
CFLAGS = -Wall -Wno-unused-result -O2
|
|
TARGET = MZFDTool
|
|
SRC = MZFDTool.c
|
|
|
|
$(TARGET): $(SRC)
|
|
$(CC) $(CFLAGS) -o $@ $<
|
|
|
|
clean:
|
|
rm -f $(TARGET)
|
|
|
|
.PHONY: clean
|