	CC = gcc -g -O2 
	SRCS = tabul.c midifile.c decode.c config.c hash.c heap.c misc.c control.c\
	 commands.c
	OBJS = tabul.o midifile.o decode.o config.o hash.o heap.o misc.o control.o\
	 commands.o

all : tabul

tabul : $(OBJS)
	$(CC) -o tabul $(OBJS)

.c.o : tabul.h midifile.h
	$(CC) -c $<

