
include Makefile.config

TARGET = bizz
TEMPLATES = stream_fmt.h
OBJS = audio.o pcx.o bizz.o

all: $(TARGET) 

$(TARGET): $(OBJS) $(TEMPLATES) 
	$(CC) -o $(TARGET) $(OBJS) $(PTCLIB) $(PTC_X_LIBRARIES) $(MIDAS_LINK) 

clean:
	rm -f core *.o

distclean:
	rm -f core *.o
	rm -f $(TARGET)

install:
	install ./bizz ../bin/bizz-binary
	

# All the following crap has been generated by `makedepend *.cc'
# DO NOT DELETE
