mirror of
https://github.com/steve-m/ms2130_patcher.git
synced 2025-12-10 07:44:45 +01:00
7 lines
128 B
Makefile
7 lines
128 B
Makefile
CC = gcc
|
|
CFLAGS = -g -Wall
|
|
|
|
program : ms2130_patch.c
|
|
$(CC) $(CFLAGS) -o ms2130_patch ms2130_patch.c
|
|
clean:
|
|
rm -f ms2130_patch
|