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

Contents of /qsampler/trunk/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 525 - (show annotations) (download)
Mon May 9 10:21:41 2005 UTC (18 years, 10 months ago) by capela
File size: 1148 byte(s)
* [bug #9] Fixed for a LSCP command syntax convention
consistency, regarding the enumeration of available
sampler engines, Audio and MIDI drivers.
* [bug #13] Update instrument names list when a new
instrument file is select on the channel setup dialog.

1 prefix = @ac_prefix@
2 qmake = @ac_qmake@
3
4 name = qsampler
5
6 headers = config.h \
7 src/qsamplerAbout.h \
8 src/qsamplerOptions.h \
9 src/qsamplerChannel.h \
10 src/qsamplerMessages.h \
11 src/qsamplerDevice.h \
12 src/qsamplerDeviceForm.ui.h \
13 src/qsamplerChannelStrip.ui.h \
14 src/qsamplerChannelForm.ui.h \
15 src/qsamplerOptionsForm.ui.h \
16 src/qsamplerMainForm.ui.h
17
18 sources = src/main.cpp \
19 src/qsamplerOptions.cpp \
20 src/qsamplerChannel.cpp \
21 src/qsamplerMessages.cpp \
22 src/qsamplerDevice.cpp \
23 src/qsamplerDeviceForm.ui \
24 src/qsamplerChannelStrip.ui \
25 src/qsamplerChannelForm.ui \
26 src/qsamplerOptionsForm.ui \
27 src/qsamplerMainForm.ui
28
29 all: $(name)
30
31 $(name).mak: $(name).pro
32 @$(qmake) -o $(name).mak $(name).pro
33
34 $(name): $(name).mak $(sources) $(headers)
35 @make -f $(name).mak
36
37 install: $(name) icons/$(name).png
38 @install -vD $(name) $(prefix)/bin/$(name)
39 @install -vD icons/$(name).png $(prefix)/share/icons/$(name).png
40
41 uninstall: $(prefix)/bin/$(name)
42 @rm -vf $(prefix)/bin/$(name)
43 @rm -vf $(prefix)/share/icons/$(name).png
44
45 clean: $(name).mak
46 @make -f $(name).mak clean
47 @rm -f $(name) $(name).mak
48 @rm -rf *.cache *.log *.status

  ViewVC Help
Powered by ViewVC