--- qsampler/trunk/Makefile.in 2005/05/16 13:32:25 545 +++ qsampler/trunk/Makefile.in 2007/10/05 17:41:49 1386 @@ -8,18 +8,28 @@ src/qsamplerOptions.h \ src/qsamplerChannel.h \ src/qsamplerMessages.h \ + src/qsamplerInstrument.h \ + src/qsamplerInstrumentList.h \ src/qsamplerDevice.h \ + src/qsamplerInstrumentForm.ui.h \ + src/qsamplerInstrumentListForm.ui.h \ src/qsamplerDeviceForm.ui.h \ src/qsamplerChannelStrip.ui.h \ src/qsamplerChannelForm.ui.h \ src/qsamplerOptionsForm.ui.h \ - src/qsamplerMainForm.ui.h + src/qsamplerMainForm.ui.h \ + src/qsamplerUtilities.h sources = src/main.cpp \ src/qsamplerOptions.cpp \ src/qsamplerChannel.cpp \ src/qsamplerMessages.cpp \ + src/qsamplerInstrument.cpp \ + src/qsamplerInstrumentList.cpp \ src/qsamplerDevice.cpp \ + src/qsamplerUtilities.cpp \ + src/qsamplerInstrumentForm.ui \ + src/qsamplerInstrumentListForm.ui \ src/qsamplerDeviceForm.ui \ src/qsamplerChannelStrip.ui \ src/qsamplerChannelForm.ui \ @@ -39,12 +49,17 @@ # It is mandatory for Debian packaging. install: $(name) icons/$(name).png - @install -vD $(name) $(DESTDIR)$(prefix)/bin/$(name) - @install -vD icons/$(name).png $(DESTDIR)$(prefix)/share/icons/$(name).png + @install -d -v -m 0755 $(DESTDIR)$(prefix)/bin + @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/pixmaps + @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/applications + @install -v -m 0755 $(name) $(DESTDIR)$(prefix)/bin/$(name) + @install -v -m 0644 icons/$(name).png $(DESTDIR)$(prefix)/share/pixmaps/$(name).png + @install -v -m 0644 $(name).desktop $(DESTDIR)$(prefix)/share/applications/$(name).desktop uninstall: $(DESTDIR)$(prefix)/bin/$(name) @rm -vf $(DESTDIR)$(prefix)/bin/$(name) - @rm -vf $(DESTDIR)$(prefix)/share/icons/$(name).png + @rm -vf $(DESTDIR)$(prefix)/share/pixmaps/$(name).png + @rm -vf $(DESTDIR)$(prefix)/share/applications/$(name).desktop clean: $(name).mak @make -f $(name).mak clean