aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sfx/mt32_GM_mapping/Makefile
blob: 2d40cb25b0bb820c36371d19c6f9d55e247e8364 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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) *~