/[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 1698 by schoenebeck, Sat Feb 16 19:41:05 2008 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/qsamplerChannelStrip.ui.h \          src/qsamplerInstrument.h \
12          src/qsamplerChannelForm.ui.h \          src/qsamplerInstrumentList.h \
13          src/qsamplerOptionsForm.ui.h \          src/qsamplerDevice.h \
14          src/qsamplerMainForm.ui.h          src/qsamplerFxSend.h \
15            src/qsamplerFxSendsModel.h \
16            src/qsamplerUtilities.h \
17            src/qsamplerInstrumentForm.h \
18            src/qsamplerInstrumentListForm.h \
19            src/qsamplerDeviceForm.h \
20            src/qsamplerDeviceStatusForm.h \
21            src/qsamplerChannelStrip.h \
22            src/qsamplerChannelForm.h \
23            src/qsamplerChannelFxForm.h \
24            src/qsamplerOptionsForm.h \
25            src/qsamplerMainForm.h
26    
27  sources = src/main.cpp \  sources = src/main.cpp \
28          src/qsamplerOptions.cpp \          src/qsamplerOptions.cpp \
29          src/qsamplerChannel.cpp \          src/qsamplerChannel.cpp \
30          src/qsamplerMessages.cpp \          src/qsamplerMessages.cpp \
31            src/qsamplerInstrument.cpp \
32            src/qsamplerInstrumentList.cpp \
33            src/qsamplerDevice.cpp \
34            src/qsamplerFxSend.cpp \
35            src/qsamplerFxSendsModel.cpp \
36            src/qsamplerUtilities.cpp \
37            src/qsamplerInstrumentForm.cpp \
38            src/qsamplerInstrumentListForm.cpp \
39            src/qsamplerDeviceForm.cpp \
40            src/qsamplerDeviceStatusForm.cpp \
41            src/qsamplerChannelStrip.cpp \
42            src/qsamplerChannelForm.cpp \
43            src/qsamplerChannelFxForm.cpp \
44            src/qsamplerOptionsForm.cpp \
45            src/qsamplerMainForm.cpp
46    
47    forms = \
48            src/qsamplerInstrumentForm.ui \
49            src/qsamplerInstrumentListForm.ui \
50            src/qsamplerDeviceForm.ui \
51          src/qsamplerChannelStrip.ui \          src/qsamplerChannelStrip.ui \
52          src/qsamplerChannelForm.ui \          src/qsamplerChannelForm.ui \
53            src/qsamplerChannelFxForm.ui \
54          src/qsamplerOptionsForm.ui \          src/qsamplerOptionsForm.ui \
55          src/qsamplerMainForm.ui          src/qsamplerMainForm.ui
56    
# Line 27  all:   $(name) Line 59  all:   $(name)
59  $(name).mak:    $(name).pro  $(name).mak:    $(name).pro
60          @$(qmake) -o $(name).mak $(name).pro          @$(qmake) -o $(name).mak $(name).pro
61    
62  $(name):        $(name).mak $(sources) $(headers)  $(name):        $(name).mak $(sources) $(headers) $(forms)
63          @make -f $(name).mak $(name)          @make -f $(name).mak
64    
65    
66    # NOTE: DO NOT DELETE $(DESTDIR) in install and uninstall rules !!!
67    #       It is mandatory for Debian packaging.
68    
69  install:        $(name) icons/$(name).png  install:        $(name) icons/$(name).png
70          @install -vD $(name) $(DESTDIR)$(prefix)/bin/$(name)          @install -d -v -m 0755 $(DESTDIR)$(prefix)/bin
71          @install -vD icons/$(name).png $(DESTDIR)$(prefix)/share/icons/$(name).png          @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/pixmaps
72            @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/applications
73            @install -v -m 0755 $(name) $(DESTDIR)$(prefix)/bin/$(name)
74            @install -v -m 0644 icons/$(name).png $(DESTDIR)$(prefix)/share/pixmaps/$(name).png
75            @install -v -m 0644 $(name).desktop $(DESTDIR)$(prefix)/share/applications/$(name).desktop
76    
77  uninstall:      $(DESTDIR)$(prefix)/bin/$(name)  uninstall:      $(DESTDIR)$(prefix)/bin/$(name)
78          @rm -vf $(DESTDIR)$(prefix)/bin/$(name)          @rm -vf $(DESTDIR)$(prefix)/bin/$(name)
79          @rm -vf $(DESTDIR)$(prefix)/share/icons/$(name).xpm          @rm -vf $(DESTDIR)$(prefix)/share/pixmaps/$(name).png
80            @rm -vf $(DESTDIR)$(prefix)/share/applications/$(name).desktop
81    
82  clean:  $(name).mak  clean:  $(name).mak
83          @make -f $(name).mak clean          @make -f $(name).mak clean

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

  ViewVC Help
Powered by ViewVC