################################################################################ # Projet : Plugin XMMS pour le format bonk # Fichier : Makefile # Création : 03.04.2002 # Révision : 16.05.2002 # Objet : Makefile ################################################################################ CPP=g++ INSTDIR=`xmms-config --plugin-dir`/Input CXXFLAGS+= -fno-exceptions -D_REENTRANT `xmms-config --cflags` -fPIC libbonk.so : bonk-xmms.cc $(CXX) $(CXXFLAGS) -shared -o libbonk.so bonk-xmms.cc -lstdc++ install : libbonk.so cp libbonk.so $(INSTDIR) uninstall : rm -f $(INSTDIR)/libbonk.so clean : rm -f libbonk.so