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

Contents of /qsampler/trunk/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1698 - (show annotations) (download)
Sat Feb 16 19:41:05 2008 UTC (16 years, 1 month ago) by schoenebeck
File size: 2480 byte(s)
* implemented MIDI device activity windows, selectable from the "View"
  main menu, still quite ugly I admit ;-)
* bumped version to 0.2.1.7

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

  ViewVC Help
Powered by ViewVC