CXX=g++ INCLUDES= FLAGS=-D__MACOSX_CORE__ -c LIBS=-framework CoreAudio -framework CoreMIDI -framework CoreFoundation \ -framework IOKit -framework Carbon -lstdc++ -lm OBJS= Bar.o User.o User: $(OBJS) $(CXX) -o User $(OBJS) $(LIBS) Bar.o: Bar.cpp Bar.h $(CXX) $(FLAGS) Bar.cpp User.o: User.cpp Bar.h $(CXX) $(FLAGS) User.cpp clean: rm -f *~ *# *.o User