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

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

  ViewVC Help
Powered by ViewVC