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

Contents of /qsampler/trunk/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1667 - (show annotations) (download)
Mon Feb 4 23:24:19 2008 UTC (16 years, 1 month ago) by schoenebeck
File size: 2410 byte(s)
* added FX Sends dialog to channel strips
  (still under construction, so far one can only create, destroy and rename
  FX sends, the rest is still to do)
* bumped version to 0.2.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/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/qsamplerChannelStrip.h \
21 src/qsamplerChannelForm.h \
22 src/qsamplerChannelFxForm.h \
23 src/qsamplerOptionsForm.h \
24 src/qsamplerMainForm.h
25
26 sources = src/main.cpp \
27 src/qsamplerOptions.cpp \
28 src/qsamplerChannel.cpp \
29 src/qsamplerMessages.cpp \
30 src/qsamplerInstrument.cpp \
31 src/qsamplerInstrumentList.cpp \
32 src/qsamplerDevice.cpp \
33 src/qsamplerFxSend.cpp \
34 src/qsamplerFxSendsModel.cpp \
35 src/qsamplerUtilities.cpp \
36 src/qsamplerInstrumentForm.cpp \
37 src/qsamplerInstrumentListForm.cpp \
38 src/qsamplerDeviceForm.cpp \
39 src/qsamplerChannelStrip.cpp \
40 src/qsamplerChannelForm.cpp \
41 src/qsamplerChannelFxForm.cpp \
42 src/qsamplerOptionsForm.cpp \
43 src/qsamplerMainForm.cpp
44
45 forms = \
46 src/qsamplerInstrumentForm.ui \
47 src/qsamplerInstrumentListForm.ui \
48 src/qsamplerDeviceForm.ui \
49 src/qsamplerChannelStrip.ui \
50 src/qsamplerChannelForm.ui \
51 src/qsamplerChannelFxForm.ui \
52 src/qsamplerOptionsForm.ui \
53 src/qsamplerMainForm.ui
54
55 all: $(name)
56
57 $(name).mak: $(name).pro
58 @$(qmake) -o $(name).mak $(name).pro
59
60 $(name): $(name).mak $(sources) $(headers) $(forms)
61 @make -f $(name).mak
62
63
64 # NOTE: DO NOT DELETE $(DESTDIR) in install and uninstall rules !!!
65 # It is mandatory for Debian packaging.
66
67 install: $(name) icons/$(name).png
68 @install -d -v -m 0755 $(DESTDIR)$(prefix)/bin
69 @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/pixmaps
70 @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/applications
71 @install -v -m 0755 $(name) $(DESTDIR)$(prefix)/bin/$(name)
72 @install -v -m 0644 icons/$(name).png $(DESTDIR)$(prefix)/share/pixmaps/$(name).png
73 @install -v -m 0644 $(name).desktop $(DESTDIR)$(prefix)/share/applications/$(name).desktop
74
75 uninstall: $(DESTDIR)$(prefix)/bin/$(name)
76 @rm -vf $(DESTDIR)$(prefix)/bin/$(name)
77 @rm -vf $(DESTDIR)$(prefix)/share/pixmaps/$(name).png
78 @rm -vf $(DESTDIR)$(prefix)/share/applications/$(name).desktop
79
80 clean: $(name).mak
81 @make -f $(name).mak clean
82 @rm -f $(name) $(name).mak
83 @rm -rf *.cache *.log *.status

  ViewVC Help
Powered by ViewVC