
CC=g++ 

EXE=mp3info 
OBJS= main.o tag.o tools.o

all: $(EXE) 

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

clean: 
	rm -f core *.o *~ $(EXE)  
