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

Annotation of /qsampler/trunk/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2028 - (hide annotations) (download)
Wed Nov 4 18:59:57 2009 UTC (14 years, 5 months ago) by capela
File size: 3181 byte(s)
* Global configuration state is now explicitly saved/committed to
  disk when View/Options... dialog changes are accepted and applied.

1 capela 75 prefix = @ac_prefix@
2     qmake = @ac_qmake@
3 capela 1873 lupdate = @ac_lupdate@
4     lrelease = @ac_lrelease@
5 capela 75
6     name = qsampler
7    
8     headers = config.h \
9     src/qsamplerAbout.h \
10     src/qsamplerOptions.h \
11 capela 264 src/qsamplerChannel.h \
12 capela 75 src/qsamplerMessages.h \
13 capela 961 src/qsamplerInstrument.h \
14     src/qsamplerInstrumentList.h \
15 capela 431 src/qsamplerDevice.h \
16 schoenebeck 1667 src/qsamplerFxSend.h \
17     src/qsamplerFxSendsModel.h \
18 capela 1504 src/qsamplerUtilities.h \
19 schoenebeck 1462 src/qsamplerInstrumentForm.h \
20     src/qsamplerInstrumentListForm.h \
21     src/qsamplerDeviceForm.h \
22 schoenebeck 1698 src/qsamplerDeviceStatusForm.h \
23 schoenebeck 1462 src/qsamplerChannelStrip.h \
24     src/qsamplerChannelForm.h \
25 schoenebeck 1667 src/qsamplerChannelFxForm.h \
26 schoenebeck 1462 src/qsamplerOptionsForm.h \
27 capela 1504 src/qsamplerMainForm.h
28 capela 75
29     sources = src/main.cpp \
30     src/qsamplerOptions.cpp \
31 capela 264 src/qsamplerChannel.cpp \
32 capela 75 src/qsamplerMessages.cpp \
33 capela 961 src/qsamplerInstrument.cpp \
34     src/qsamplerInstrumentList.cpp \
35 capela 431 src/qsamplerDevice.cpp \
36 schoenebeck 1667 src/qsamplerFxSend.cpp \
37     src/qsamplerFxSendsModel.cpp \
38 schoenebeck 1386 src/qsamplerUtilities.cpp \
39 capela 1466 src/qsamplerInstrumentForm.cpp \
40     src/qsamplerInstrumentListForm.cpp \
41     src/qsamplerDeviceForm.cpp \
42 schoenebeck 1698 src/qsamplerDeviceStatusForm.cpp \
43 capela 1466 src/qsamplerChannelStrip.cpp \
44     src/qsamplerChannelForm.cpp \
45 schoenebeck 1667 src/qsamplerChannelFxForm.cpp \
46 capela 1466 src/qsamplerOptionsForm.cpp \
47     src/qsamplerMainForm.cpp
48    
49     forms = \
50 capela 961 src/qsamplerInstrumentForm.ui \
51     src/qsamplerInstrumentListForm.ui \
52 capela 426 src/qsamplerDeviceForm.ui \
53 capela 75 src/qsamplerChannelStrip.ui \
54     src/qsamplerChannelForm.ui \
55 schoenebeck 1667 src/qsamplerChannelFxForm.ui \
56 capela 75 src/qsamplerOptionsForm.ui \
57     src/qsamplerMainForm.ui
58    
59 capela 1873 translations_sources = \
60 capela 2028 translations/qsampler_cs.ts \
61 capela 1873 translations/qsampler_ru.ts
62 capela 75
63 capela 1873 translations_targets = \
64 capela 2028 translations/qsampler_cs.qm \
65 capela 1873 translations/qsampler_ru.qm
66    
67     all: $(name) $(translations_targets)
68    
69 capela 75 $(name).mak: $(name).pro
70     @$(qmake) -o $(name).mak $(name).pro
71    
72 capela 1466 $(name): $(name).mak $(sources) $(headers) $(forms)
73 capela 525 @make -f $(name).mak
74 capela 75
75 capela 1873 %.ts: $(name).pro $(sources) $(headers) $(forms)
76     @$(lupdate) -verbose $(name).pro
77 schoenebeck 545
78 capela 1873 %.qm: %.ts
79     @$(lrelease) -verbose $< -qm $@
80    
81 schoenebeck 545 # NOTE: DO NOT DELETE $(DESTDIR) in install and uninstall rules !!!
82     # It is mandatory for Debian packaging.
83    
84 capela 75 install: $(name) icons/$(name).png
85 capela 631 @install -d -v -m 0755 $(DESTDIR)$(prefix)/bin
86 capela 1255 @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/pixmaps
87     @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/applications
88 capela 1873 @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/locale
89 capela 631 @install -v -m 0755 $(name) $(DESTDIR)$(prefix)/bin/$(name)
90 capela 1255 @install -v -m 0644 icons/$(name).png $(DESTDIR)$(prefix)/share/pixmaps/$(name).png
91     @install -v -m 0644 $(name).desktop $(DESTDIR)$(prefix)/share/applications/$(name).desktop
92 capela 1873 @install -v -m 0644 $(translations_targets) $(DESTDIR)$(prefix)/share/locale
93 capela 75
94 schoenebeck 545 uninstall: $(DESTDIR)$(prefix)/bin/$(name)
95     @rm -vf $(DESTDIR)$(prefix)/bin/$(name)
96 capela 1255 @rm -vf $(DESTDIR)$(prefix)/share/pixmaps/$(name).png
97     @rm -vf $(DESTDIR)$(prefix)/share/applications/$(name).desktop
98 capela 1873 @rm -vf $(DESTDIR)$(prefix)/share/locale/$(translations_targets)
99     @for x in $(translations_targets); do \
100     rm -vf $(DESTDIR)$(prefix)/share/locale/`basename $$x`; done
101 capela 75
102     clean: $(name).mak
103     @make -f $(name).mak clean
104     @rm -f $(name) $(name).mak
105 capela 1873 @rm -rf *.cache *.log *.status $(translations_targets)

  ViewVC Help
Powered by ViewVC