/[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 413 by schoenebeck, Mon Feb 28 22:19:07 2005 UTC revision 961 by capela, Sun Dec 3 18:26:13 2006 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    
45    
46    # NOTE: DO NOT DELETE $(DESTDIR) in install and uninstall rules !!!
47    #       It is mandatory for Debian packaging.
48    
49  install:        $(name) icons/$(name).png  install:        $(name) icons/$(name).png
50          @install -vD $(name) $(DESTDIR)$(prefix)/bin/$(name)          @install -d -v -m 0755 $(DESTDIR)$(prefix)/bin
51          @install -vD icons/$(name).png $(DESTDIR)$(prefix)/share/icons/$(name).png          @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/icons
52            @install -v -m 0755 $(name) $(DESTDIR)$(prefix)/bin/$(name)
53            @install -v -m 0644 icons/$(name).png $(DESTDIR)$(prefix)/share/icons/$(name).png
54    
55  uninstall:      $(DESTDIR)$(prefix)/bin/$(name)  uninstall:      $(DESTDIR)$(prefix)/bin/$(name)
56          @rm -vf $(DESTDIR)$(prefix)/bin/$(name)          @rm -vf $(DESTDIR)$(prefix)/bin/$(name)
57          @rm -vf $(DESTDIR)$(prefix)/share/icons/$(name).xpm          @rm -vf $(DESTDIR)$(prefix)/share/icons/$(name).png
58    
59  clean:  $(name).mak  clean:  $(name).mak
60          @make -f $(name).mak clean          @make -f $(name).mak clean

Legend:
Removed from v.413  
changed lines
  Added in v.961

  ViewVC Help
Powered by ViewVC