mirror of
https://github.com/Michaelangel007/apple2gs_shr_converter.git
synced 2024-12-22 02:30:38 +00:00
20 lines
370 B
Makefile
Executable File
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
|