# Makefile for the GB-Tools

CC = tcc -1 -Z -mt -G -O -a

.c.exe:
  $(CC) $<

all: calc_crc.exe dump.exe comp.exe gif2gb.exe sym2l.exe

calc_crc.exe: calc_crc.c

dump.exe: dump.c

comp.exe: comp.c

gif2gb.exe: gif2gb.c

sym2l.exe: sym2l.c
