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

Annotation of /qsampler/trunk/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3648 - (hide annotations) (download)
Tue Dec 10 10:34:06 2019 UTC (4 years, 4 months ago) by capela
File size: 3235 byte(s)
- Custom color (palette) theme editor introduced; color
  (palette) theme changes are now effective immediately,
  except on default. (EXPERIMENTAL)
1 capela 75 prefix = @ac_prefix@
2    
3     name = qsampler
4    
5 capela 2074 target = src/$(name)
6    
7     headers = \
8     src/config.h \
9 capela 3493 src/qsampler.h \
10 capela 75 src/qsamplerAbout.h \
11     src/qsamplerOptions.h \
12 capela 264 src/qsamplerChannel.h \
13 capela 75 src/qsamplerMessages.h \
14 capela 961 src/qsamplerInstrument.h \
15     src/qsamplerInstrumentList.h \
16 capela 431 src/qsamplerDevice.h \
17 schoenebeck 1667 src/qsamplerFxSend.h \
18     src/qsamplerFxSendsModel.h \
19 capela 1504 src/qsamplerUtilities.h \
20 schoenebeck 1462 src/qsamplerInstrumentForm.h \
21     src/qsamplerInstrumentListForm.h \
22     src/qsamplerDeviceForm.h \
23 schoenebeck 1698 src/qsamplerDeviceStatusForm.h \
24 schoenebeck 1462 src/qsamplerChannelStrip.h \
25     src/qsamplerChannelForm.h \
26 schoenebeck 1667 src/qsamplerChannelFxForm.h \
27 schoenebeck 1462 src/qsamplerOptionsForm.h \
28 capela 3648 src/qsamplerPaletteForm.h \
29 capela 1504 src/qsamplerMainForm.h
30 capela 75
31 capela 2074 sources = \
32     src/qsampler.cpp \
33 capela 75 src/qsamplerOptions.cpp \
34 capela 264 src/qsamplerChannel.cpp \
35 capela 75 src/qsamplerMessages.cpp \
36 capela 961 src/qsamplerInstrument.cpp \
37     src/qsamplerInstrumentList.cpp \
38 capela 431 src/qsamplerDevice.cpp \
39 schoenebeck 1667 src/qsamplerFxSend.cpp \
40     src/qsamplerFxSendsModel.cpp \
41 schoenebeck 1386 src/qsamplerUtilities.cpp \
42 capela 1466 src/qsamplerInstrumentForm.cpp \
43     src/qsamplerInstrumentListForm.cpp \
44     src/qsamplerDeviceForm.cpp \
45 schoenebeck 1698 src/qsamplerDeviceStatusForm.cpp \
46 capela 1466 src/qsamplerChannelStrip.cpp \
47     src/qsamplerChannelForm.cpp \
48 schoenebeck 1667 src/qsamplerChannelFxForm.cpp \
49 capela 1466 src/qsamplerOptionsForm.cpp \
50 capela 3648 src/qsamplerPaletteForm.cpp \
51 capela 1466 src/qsamplerMainForm.cpp
52    
53     forms = \
54 capela 961 src/qsamplerInstrumentForm.ui \
55     src/qsamplerInstrumentListForm.ui \
56 capela 426 src/qsamplerDeviceForm.ui \
57 capela 75 src/qsamplerChannelStrip.ui \
58     src/qsamplerChannelForm.ui \
59 schoenebeck 1667 src/qsamplerChannelFxForm.ui \
60 capela 75 src/qsamplerOptionsForm.ui \
61 capela 3648 src/qsamplerPaletteForm.ui \
62 capela 75 src/qsamplerMainForm.ui
63    
64 capela 2074 resources = \
65     src/qsampler.qrc
66    
67 capela 1873 translations_sources = \
68 capela 2074 src/translations/qsampler_cs.ts \
69 capela 3383 src/translations/qsampler_fr.ts \
70 capela 2074 src/translations/qsampler_ru.ts
71 capela 75
72 capela 1873 translations_targets = \
73 capela 2074 src/translations/qsampler_cs.qm \
74 capela 3383 src/translations/qsampler_fr.qm \
75 capela 2074 src/translations/qsampler_ru.qm
76 capela 1873
77 capela 2283
78 capela 2987 export datadir = @ac_datadir@
79     export mandir = @ac_mandir@
80 capela 2283
81 capela 2631 translations_dir = $(datadir)/$(name)/translations
82 capela 2283
83 capela 2631
84 capela 2835 export QMAKE = @ac_qmake@
85     export LUPDATE = @ac_lupdate@
86     export LRELEASE = @ac_lrelease@
87    
88    
89 capela 2416 all: $(target)
90 capela 1873
91 capela 2074
92     $(target): $(name).mak $(resources) ${forms} $(sources) $(headers)
93 capela 2339 @$(MAKE) -f $(name).mak
94 capela 2074
95 capela 75 $(name).mak: $(name).pro
96 capela 2835 @$(QMAKE) -o $(name).mak $(name).pro
97 capela 75
98 capela 2416
99 capela 3521 translations_lupdate: $(translations_sources)
100     @$(LUPDATE) -verbose -no-obsolete -recursive src -ts $(translations_sources)
101 schoenebeck 545
102 capela 2416 translations_lrelease: translations_lupdate $(translations_targets)
103    
104 capela 1873 %.qm: %.ts
105 capela 2835 @$(LRELEASE) -verbose $< -qm $@
106 capela 1873
107 schoenebeck 545
108 capela 2642 install: $(target) translations_lrelease $(name).1
109 capela 2339 @$(MAKE) INSTALL_ROOT=$(DESTDIR) -f $(name).mak install
110 capela 2631 @install -d -v -m 0755 $(DESTDIR)$(translations_dir)
111 capela 2642 @install -d -v -m 0755 $(DESTDIR)$(mandir)/man1
112 capela 2631 @install -v -m 0644 $(translations_targets) $(DESTDIR)$(translations_dir)
113 capela 3080 @install -v -m 0644 $(name)*.1 $(DESTDIR)$(mandir)/man1
114     @gzip -vf $(DESTDIR)$(mandir)/man1/$(name)*.1
115 capela 75
116 capela 2283 uninstall: $(DESTDIR)$(prefix)/bin/$(name)
117 capela 2339 @$(MAKE) INSTALL_ROOT=$(DESTDIR) -f $(name).mak uninstall
118 capela 2631 @rm -rvf $(DESTDIR)$(translations_dir)
119 capela 3080 @rm -vf $(DESTDIR)$(mandir)/man1/$(name)*.1.gz
120 capela 75
121 capela 2074
122 capela 75 clean: $(name).mak
123 capela 3407 @$(MAKE) -f $(name).mak distclean || true
124 capela 2074 @rm -f $(target) $(target).mak $(name).mak
125 capela 1873 @rm -rf *.cache *.log *.status $(translations_targets)

  ViewVC Help
Powered by ViewVC