CC = gcc
LDFLAGS = 
GTKFLAGS = `gtk-config --libs` `gtk-config --cflags`

all: gtranscode

gtranscode: main.c tcprobe.c interface.c tcprobe.h interface.h transcode.c transcode.h
	$(CC) -g $(LDFLAGS) $(GTKFLAGS) main.c tcprobe.c interface.c transcode.c -o gtranscode

install: gtranscode
	echo "There is no 'make install' for this program.  Just copy gtranscode somewhere in your path."

clean:
	rm -rf gtranscode core* a.out *~
	
