Add magick/

This commit is contained in:
Michaelangel007 2016-08-24 09:53:38 -07:00
parent 6c9c76c047
commit e57a530746
3 changed files with 1997 additions and 0 deletions

BIN
magick/MinGW Command Prompt.lnk Executable file

Binary file not shown.

1978
magick/m2s.c Executable file

File diff suppressed because it is too large Load Diff

19
magick/makefile Executable file
View File

@ -0,0 +1,19 @@
# ------------------------------------------------------------------------
# MAKEFILE
#
# Created by : mmphosis
#
# Purpose : Makefile for gcc
#
# Compilers:
#
# gcc
#
# ------------------------------------------------------------------------
SRC=m2s
PRG=m2s
all: $(PRG)
$(PRG): $(SRC).c makefile
gcc -DMINGW -o ..\$(PRG) $(SRC).c