/[svn]/qsampler/tags/qsampler_0_1_3/Makefile.in
ViewVC logotype

Contents of /qsampler/tags/qsampler_0_1_3/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 872 - (show annotations) (download)
Thu Jun 1 09:32:02 2006 UTC (17 years, 10 months ago) by (unknown author)
File size: 1432 byte(s)
This commit was manufactured by cvs2svn to create tag 'qsampler_0_1_3'.
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
38 # NOTE: DO NOT DELETE $(DESTDIR) in install and uninstall rules !!!
39 # It is mandatory for Debian packaging.
40
41 install: $(name) icons/$(name).png
42 @install -d -v -m 0755 $(DESTDIR)$(prefix)/bin
43 @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/icons
44 @install -v -m 0755 $(name) $(DESTDIR)$(prefix)/bin/$(name)
45 @install -v -m 0644 icons/$(name).png $(DESTDIR)$(prefix)/share/icons/$(name).png
46
47 uninstall: $(DESTDIR)$(prefix)/bin/$(name)
48 @rm -vf $(DESTDIR)$(prefix)/bin/$(name)
49 @rm -vf $(DESTDIR)$(prefix)/share/icons/$(name).png
50
51 clean: $(name).mak
52 @make -f $(name).mak clean
53 @rm -f $(name) $(name).mak
54 @rm -rf *.cache *.log *.status

  ViewVC Help
Powered by ViewVC