Add a2c sources

This commit is contained in:
Michaelangel007 2016-08-24 10:01:26 -07:00
parent 48016de960
commit e70b09ddce
3 changed files with 8618 additions and 0 deletions

BIN
a2fcbmp/MinGW Command Prompt.lnk Executable file

Binary file not shown.

8599
a2fcbmp/a2fcbmp.c Executable file

File diff suppressed because it is too large Load Diff

19
a2fcbmp/makefile Executable file
View File

@ -0,0 +1,19 @@
# ------------------------------------------------------------------------
# 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