apple2gs_shr_converter/src/makefile
Michaelangel007 969bd577cb Add src/
2016-08-24 09:53:57 -07:00

20 lines
370 B
Makefile
Executable File

# ------------------------------------------------------------------------
# MAKEFILE
#
# Created by : mmphosis
#
# Purpose : Makefile for gcc
#
# Compilers:
#
# gcc
#
# ------------------------------------------------------------------------
SRC=b2d
PRG=b2d
all: $(PRG)
$(PRG): $(SRC).c $(SRC).h makefile
gcc -DMINGW -o ../$(PRG) $(SRC).c