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

Contents of /qsampler/trunk/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1386 - (show annotations) (download)
Fri Oct 5 17:41:49 2007 UTC (16 years, 5 months ago) by schoenebeck
File size: 1981 byte(s)
* Added support for LSCP escape sequences to allow loading and
  mapping instrument files with special characters in their
  filename (fixes #47).

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/qsamplerInstrument.h \
12 src/qsamplerInstrumentList.h \
13 src/qsamplerDevice.h \
14 src/qsamplerInstrumentForm.ui.h \
15 src/qsamplerInstrumentListForm.ui.h \
16 src/qsamplerDeviceForm.ui.h \
17 src/qsamplerChannelStrip.ui.h \
18 src/qsamplerChannelForm.ui.h \
19 src/qsamplerOptionsForm.ui.h \
20 src/qsamplerMainForm.ui.h \
21 src/qsamplerUtilities.h
22
23 sources = src/main.cpp \
24 src/qsamplerOptions.cpp \
25 src/qsamplerChannel.cpp \
26 src/qsamplerMessages.cpp \
27 src/qsamplerInstrument.cpp \
28 src/qsamplerInstrumentList.cpp \
29 src/qsamplerDevice.cpp \
30 src/qsamplerUtilities.cpp \
31 src/qsamplerInstrumentForm.ui \
32 src/qsamplerInstrumentListForm.ui \
33 src/qsamplerDeviceForm.ui \
34 src/qsamplerChannelStrip.ui \
35 src/qsamplerChannelForm.ui \
36 src/qsamplerOptionsForm.ui \
37 src/qsamplerMainForm.ui
38
39 all: $(name)
40
41 $(name).mak: $(name).pro
42 @$(qmake) -o $(name).mak $(name).pro
43
44 $(name): $(name).mak $(sources) $(headers)
45 @make -f $(name).mak
46
47
48 # NOTE: DO NOT DELETE $(DESTDIR) in install and uninstall rules !!!
49 # It is mandatory for Debian packaging.
50
51 install: $(name) icons/$(name).png
52 @install -d -v -m 0755 $(DESTDIR)$(prefix)/bin
53 @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/pixmaps
54 @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/applications
55 @install -v -m 0755 $(name) $(DESTDIR)$(prefix)/bin/$(name)
56 @install -v -m 0644 icons/$(name).png $(DESTDIR)$(prefix)/share/pixmaps/$(name).png
57 @install -v -m 0644 $(name).desktop $(DESTDIR)$(prefix)/share/applications/$(name).desktop
58
59 uninstall: $(DESTDIR)$(prefix)/bin/$(name)
60 @rm -vf $(DESTDIR)$(prefix)/bin/$(name)
61 @rm -vf $(DESTDIR)$(prefix)/share/pixmaps/$(name).png
62 @rm -vf $(DESTDIR)$(prefix)/share/applications/$(name).desktop
63
64 clean: $(name).mak
65 @make -f $(name).mak clean
66 @rm -f $(name) $(name).mak
67 @rm -rf *.cache *.log *.status

  ViewVC Help
Powered by ViewVC