# Makefile for homework3, the Huffman code generator
# Can you tell this is my first makefile?

# what compiler are we going to use?
CC = g++

########################################################################

main : ${OBJS}
	${CC} taginfo.cpp `taglib-config --cflags --libs` -o taginfo

clean :
	rm -f core taginfo

install:
	make; strip taginfo; cp taginfo /usr/local/bin
