No Description

makefile 170B

12345678910
  1. all: BPlayer
  2. BPlayer.o: BPlayer.h BPlayer.cpp
  3. g++ -c BPlayer.cpp
  4. BPlayer: BPlayer.o BPlayerClient.cpp
  5. g++ -o client BPlayer.o BPlayerClient.cpp
  6. clean:
  7. rm client *.o