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

Annotation of /qsampler/trunk/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1698 - (hide 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 capela 75 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 capela 264 src/qsamplerChannel.h \
10 capela 75 src/qsamplerMessages.h \
11 capela 961 src/qsamplerInstrument.h \
12     src/qsamplerInstrumentList.h \
13 capela 431 src/qsamplerDevice.h \
14 schoenebeck 1667 src/qsamplerFxSend.h \
15     src/qsamplerFxSendsModel.h \
16 capela 1504 src/qsamplerUtilities.h \
17 schoenebeck 1462 src/qsamplerInstrumentForm.h \
18     src/qsamplerInstrumentListForm.h \
19     src/qsamplerDeviceForm.h \
20 schoenebeck 1698 src/qsamplerDeviceStatusForm.h \
21 schoenebeck 1462 src/qsamplerChannelStrip.h \
22     src/qsamplerChannelForm.h \
23 schoenebeck 1667 src/qsamplerChannelFxForm.h \
24 schoenebeck 1462 src/qsamplerOptionsForm.h \
25 capela 1504 src/qsamplerMainForm.h
26 capela 75
27     sources = src/main.cpp \
28     src/qsamplerOptions.cpp \
29 capela 264 src/qsamplerChannel.cpp \
30 capela 75 src/qsamplerMessages.cpp \
31 capela 961 src/qsamplerInstrument.cpp \
32     src/qsamplerInstrumentList.cpp \
33 capela 431 src/qsamplerDevice.cpp \
34 schoenebeck 1667 src/qsamplerFxSend.cpp \
35     src/qsamplerFxSendsModel.cpp \
36 schoenebeck 1386 src/qsamplerUtilities.cpp \
37 capela 1466 src/qsamplerInstrumentForm.cpp \
38     src/qsamplerInstrumentListForm.cpp \
39     src/qsamplerDeviceForm.cpp \
40 schoenebeck 1698 src/qsamplerDeviceStatusForm.cpp \
41 capela 1466 src/qsamplerChannelStrip.cpp \
42     src/qsamplerChannelForm.cpp \
43 schoenebeck 1667 src/qsamplerChannelFxForm.cpp \
44 capela 1466 src/qsamplerOptionsForm.cpp \
45     src/qsamplerMainForm.cpp
46    
47     forms = \
48 capela 961 src/qsamplerInstrumentForm.ui \
49     src/qsamplerInstrumentListForm.ui \
50 capela 426 src/qsamplerDeviceForm.ui \
51 capela 75 src/qsamplerChannelStrip.ui \
52     src/qsamplerChannelForm.ui \
53 schoenebeck 1667 src/qsamplerChannelFxForm.ui \
54 capela 75 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 capela 1466 $(name): $(name).mak $(sources) $(headers) $(forms)
63 capela 525 @make -f $(name).mak
64 capela 75
65 schoenebeck 545
66     # NOTE: DO NOT DELETE $(DESTDIR) in install and uninstall rules !!!
67     # It is mandatory for Debian packaging.
68    
69 capela 75 install: $(name) icons/$(name).png
70 capela 631 @install -d -v -m 0755 $(DESTDIR)$(prefix)/bin
71 capela 1255 @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/pixmaps
72     @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/applications
73 capela 631 @install -v -m 0755 $(name) $(DESTDIR)$(prefix)/bin/$(name)
74 capela 1255 @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 capela 75
77 schoenebeck 545 uninstall: $(DESTDIR)$(prefix)/bin/$(name)
78     @rm -vf $(DESTDIR)$(prefix)/bin/$(name)
79 capela 1255 @rm -vf $(DESTDIR)$(prefix)/share/pixmaps/$(name).png
80     @rm -vf $(DESTDIR)$(prefix)/share/applications/$(name).desktop
81 capela 75
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