mirror of
https://github.com/Michaelangel007/apple2gs_shr_converter.git
synced 2024-11-27 20:50:06 +00:00
20 lines
361 B
Makefile
20 lines
361 B
Makefile
|
# ------------------------------------------------------------------------
|
||
|
# MAKEFILE
|
||
|
#
|
||
|
# Created by : mmphosis
|
||
|
#
|
||
|
# Purpose : Makefile for gcc
|
||
|
#
|
||
|
# Compilers:
|
||
|
#
|
||
|
# gcc
|
||
|
#
|
||
|
# ------------------------------------------------------------------------
|
||
|
|
||
|
SRC=m2s
|
||
|
PRG=m2s
|
||
|
all: $(PRG)
|
||
|
|
||
|
$(PRG): $(SRC).c makefile
|
||
|
gcc -DMINGW -o ..\$(PRG) $(SRC).c
|