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

Contents of /qsampler/trunk/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2282 - (show annotations) (download)
Sun Nov 13 20:29:46 2011 UTC (12 years, 4 months ago) by capela
File size: 2851 byte(s)
* Fixed Makefile.in handling of installation directories to
  the configure script eg. --bindir, --datadir, --localedir.
1 prefix = @ac_prefix@
2 qmake = @ac_qmake@
3 lupdate = @ac_lupdate@
4 lrelease = @ac_lrelease@
5
6 name = qsampler
7
8 target = src/$(name)
9
10 headers = \
11 src/config.h \
12 src/qsamplerAbout.h \
13 src/qsamplerOptions.h \
14 src/qsamplerChannel.h \
15 src/qsamplerMessages.h \
16 src/qsamplerInstrument.h \
17 src/qsamplerInstrumentList.h \
18 src/qsamplerDevice.h \
19 src/qsamplerFxSend.h \
20 src/qsamplerFxSendsModel.h \
21 src/qsamplerUtilities.h \
22 src/qsamplerInstrumentForm.h \
23 src/qsamplerInstrumentListForm.h \
24 src/qsamplerDeviceForm.h \
25 src/qsamplerDeviceStatusForm.h \
26 src/qsamplerChannelStrip.h \
27 src/qsamplerChannelForm.h \
28 src/qsamplerChannelFxForm.h \
29 src/qsamplerOptionsForm.h \
30 src/qsamplerMainForm.h
31
32 sources = \
33 src/qsampler.cpp \
34 src/qsamplerOptions.cpp \
35 src/qsamplerChannel.cpp \
36 src/qsamplerMessages.cpp \
37 src/qsamplerInstrument.cpp \
38 src/qsamplerInstrumentList.cpp \
39 src/qsamplerDevice.cpp \
40 src/qsamplerFxSend.cpp \
41 src/qsamplerFxSendsModel.cpp \
42 src/qsamplerUtilities.cpp \
43 src/qsamplerInstrumentForm.cpp \
44 src/qsamplerInstrumentListForm.cpp \
45 src/qsamplerDeviceForm.cpp \
46 src/qsamplerDeviceStatusForm.cpp \
47 src/qsamplerChannelStrip.cpp \
48 src/qsamplerChannelForm.cpp \
49 src/qsamplerChannelFxForm.cpp \
50 src/qsamplerOptionsForm.cpp \
51 src/qsamplerMainForm.cpp
52
53 forms = \
54 src/qsamplerInstrumentForm.ui \
55 src/qsamplerInstrumentListForm.ui \
56 src/qsamplerDeviceForm.ui \
57 src/qsamplerChannelStrip.ui \
58 src/qsamplerChannelForm.ui \
59 src/qsamplerChannelFxForm.ui \
60 src/qsamplerOptionsForm.ui \
61 src/qsamplerMainForm.ui
62
63 resources = \
64 src/qsampler.qrc
65
66 translations_sources = \
67 src/translations/qsampler_cs.ts \
68 src/translations/qsampler_ru.ts
69
70 translations_targets = \
71 src/translations/qsampler_cs.qm \
72 src/translations/qsampler_ru.qm
73
74 all: $(target) $(translations_targets)
75
76
77 $(target): $(name).mak $(resources) ${forms} $(sources) $(headers)
78 @make -f $(name).mak
79
80 $(name).mak: $(name).pro
81 @$(qmake) -o $(name).mak $(name).pro
82
83
84 %.ts: $(name).pro $(resources) ${forms} $(sources) $(headers)
85 @$(lupdate) -verbose $(name).pro
86
87 %.qm: %.ts
88 @$(lrelease) -verbose $< -qm $@
89
90
91 exec_prefix = @exec_prefix@
92 datarootdir = @datarootdir@
93
94 export bindir = @bindir@
95 export datadir = @datadir@
96 export localedir = @localedir@
97
98
99 install: $(target) $(translations_targets)
100 @make INSTALL_ROOT=$(DESTDIR) -f $(name).mak install
101 @install -d -v -m 0755 $(DESTDIR)$(localedir)
102 @install -v -m 0644 $(translations_targets) $(DESTDIR)$(localedir)
103
104 uninstall: $(DESTDIR)$(bindir)/$(name)
105 @make INSTALL_ROOT=$(DESTDIR) -f $(name).mak uninstall
106 @rm -vf $(DESTDIR)$(localedir)/$(translations_targets)
107 @for x in $(translations_targets); do \
108 rm -vf $(DESTDIR)$(localedir)/`basename $$x`; done
109
110
111 clean: $(name).mak
112 @make -f $(name).mak clean
113 @rm -f $(target) $(target).mak $(name).mak
114 @rm -rf *.cache *.log *.status $(translations_targets)

  ViewVC Help
Powered by ViewVC