aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sfx/mt32_GM_mapping/Makefile
diff options
context:
space:
mode:
authorJordi Vilalta Prat2009-02-15 06:10:59 +0000
committerJordi Vilalta Prat2009-02-15 06:10:59 +0000
commitfa6e10e9cec163845aa29e7940c86e9c9ab8a2bc (patch)
treece87338830cc8c149e1de545246bcefe4f45da00 /engines/sci/sfx/mt32_GM_mapping/Makefile
parent7c148ddf021c990fa866b7600f979aac9a5b26c9 (diff)
downloadscummvm-rg350-fa6e10e9cec163845aa29e7940c86e9c9ab8a2bc.tar.gz
scummvm-rg350-fa6e10e9cec163845aa29e7940c86e9c9ab8a2bc.tar.bz2
scummvm-rg350-fa6e10e9cec163845aa29e7940c86e9c9ab8a2bc.zip
Import the SCI engine sources from the FreeSCI Glutton branch (it doesn't compile yet)
svn-id: r38192
Diffstat (limited to 'engines/sci/sfx/mt32_GM_mapping/Makefile')
-rw-r--r--engines/sci/sfx/mt32_GM_mapping/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/engines/sci/sfx/mt32_GM_mapping/Makefile b/engines/sci/sfx/mt32_GM_mapping/Makefile
new file mode 100644
index 0000000000..2d40cb25b0
--- /dev/null
+++ b/engines/sci/sfx/mt32_GM_mapping/Makefile
@@ -0,0 +1,15 @@
+CC =gcc
+CFLAGS =-O2 -Wall
+objects =main.o
+
+mtgm: $(objects)
+ $(CC) -o mtgm $(objects)
+
+main.o: main.c
+ $(CC) $(CFLAGS) -c main.c
+
+.PHONY: clean distclean
+clean:
+ rm -f mtgm $(objects)
+distclean:
+ rm -f mtgm $(objects) *~