mirror of
https://github.com/Michaelangel007/apple2gs_shr_converter.git
synced 2025-01-28 02:35:15 +00:00
20 lines
365 B
Makefile
20 lines
365 B
Makefile
|
# ------------------------------------------------------------------------
|
||
|
# MAKEFILE
|
||
|
#
|
||
|
# Created by : mmphosis
|
||
|
#
|
||
|
# Purpose : Makefile for gcc
|
||
|
#
|
||
|
# Compilers:
|
||
|
#
|
||
|
# gcc
|
||
|
#
|
||
|
# ------------------------------------------------------------------------
|
||
|
|
||
|
SRC=a2fcbmp
|
||
|
PRG=a2b
|
||
|
all: $(PRG)
|
||
|
|
||
|
$(PRG): $(SRC).c makefile
|
||
|
gcc -DMINGW -o ../$(PRG) $(SRC).c
|