/[svn]/qsampler/trunk/Makefile.in
ViewVC logotype

Diff of /qsampler/trunk/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 418 by capela, Wed Mar 2 16:23:10 2005 UTC revision 1255 by capela, Mon Jun 25 10:15:07 2007 UTC
# Line 8  headers = config.h \ Line 8  headers = config.h \
8          src/qsamplerOptions.h \          src/qsamplerOptions.h \
9          src/qsamplerChannel.h \          src/qsamplerChannel.h \
10          src/qsamplerMessages.h \          src/qsamplerMessages.h \
11            src/qsamplerInstrument.h \
12            src/qsamplerInstrumentList.h \
13            src/qsamplerDevice.h \
14            src/qsamplerInstrumentForm.ui.h \
15            src/qsamplerInstrumentListForm.ui.h \
16            src/qsamplerDeviceForm.ui.h \
17          src/qsamplerChannelStrip.ui.h \          src/qsamplerChannelStrip.ui.h \
18          src/qsamplerChannelForm.ui.h \          src/qsamplerChannelForm.ui.h \
19          src/qsamplerOptionsForm.ui.h \          src/qsamplerOptionsForm.ui.h \
# Line 17  sources = src/main.cpp \ Line 23  sources = src/main.cpp \
23          src/qsamplerOptions.cpp \          src/qsamplerOptions.cpp \
24          src/qsamplerChannel.cpp \          src/qsamplerChannel.cpp \
25          src/qsamplerMessages.cpp \          src/qsamplerMessages.cpp \
26            src/qsamplerInstrument.cpp \
27            src/qsamplerInstrumentList.cpp \
28            src/qsamplerDevice.cpp \
29            src/qsamplerInstrumentForm.ui \
30            src/qsamplerInstrumentListForm.ui \
31            src/qsamplerDeviceForm.ui \
32          src/qsamplerChannelStrip.ui \          src/qsamplerChannelStrip.ui \
33          src/qsamplerChannelForm.ui \          src/qsamplerChannelForm.ui \
34          src/qsamplerOptionsForm.ui \          src/qsamplerOptionsForm.ui \
# Line 28  $(name).mak:   $(name).pro Line 40  $(name).mak:   $(name).pro
40          @$(qmake) -o $(name).mak $(name).pro          @$(qmake) -o $(name).mak $(name).pro
41    
42  $(name):        $(name).mak $(sources) $(headers)  $(name):        $(name).mak $(sources) $(headers)
43          @make -f $(name).mak $(name)          @make -f $(name).mak
44    
 install:        $(name) icons/$(name).png  
         @install -vD $(name) $(prefix)/bin/$(name)  
         @install -vD icons/$(name).png $(prefix)/share/icons/$(name).png  
45    
46  uninstall:      $(prefix)/bin/$(name)  # NOTE: DO NOT DELETE $(DESTDIR) in install and uninstall rules !!!
47          @rm -vf $(prefix)/bin/$(name)  #       It is mandatory for Debian packaging.
48          @rm -vf $(prefix)/share/icons/$(name).png  
49    install:        $(name) icons/$(name).png
50            @install -d -v -m 0755 $(DESTDIR)$(prefix)/bin
51            @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/pixmaps
52            @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/applications
53            @install -v -m 0755 $(name) $(DESTDIR)$(prefix)/bin/$(name)
54            @install -v -m 0644 icons/$(name).png $(DESTDIR)$(prefix)/share/pixmaps/$(name).png
55            @install -v -m 0644 $(name).desktop $(DESTDIR)$(prefix)/share/applications/$(name).desktop
56    
57    uninstall:      $(DESTDIR)$(prefix)/bin/$(name)
58            @rm -vf $(DESTDIR)$(prefix)/bin/$(name)
59            @rm -vf $(DESTDIR)$(prefix)/share/pixmaps/$(name).png
60            @rm -vf $(DESTDIR)$(prefix)/share/applications/$(name).desktop
61    
62  clean:  $(name).mak  clean:  $(name).mak
63          @make -f $(name).mak clean          @make -f $(name).mak clean

Legend:
Removed from v.418  
changed lines
  Added in v.1255

  ViewVC Help
Powered by ViewVC