apple2gs_shr_converter/src_m2s/makefile

20 lines
361 B
Makefile
Raw Normal View History

2016-08-24 16:53:38 +00:00
# ------------------------------------------------------------------------
# MAKEFILE
#
# Created by : mmphosis
#
# Purpose : Makefile for gcc
#
# Compilers:
#
# gcc
#
# ------------------------------------------------------------------------
SRC=m2s
PRG=m2s
all: $(PRG)
$(PRG): $(SRC).c makefile
2016-08-24 17:05:46 +00:00
gcc -DMINGW -o ../$(PRG) $(SRC).c