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

Annotation of /qsampler/trunk/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1462 - (hide annotations) (download)
Mon Oct 29 14:18:13 2007 UTC (16 years, 5 months ago) by schoenebeck
File size: 1960 byte(s)
- forgot some autotools updates needed for the Qt4 version

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 1462 src/qsamplerInstrumentForm.h \
15     src/qsamplerInstrumentListForm.h \
16     src/qsamplerDeviceForm.h \
17     src/qsamplerChannelStrip.h \
18     src/qsamplerChannelForm.h \
19     src/qsamplerOptionsForm.h \
20     src/qsamplerMainForm.h \
21 schoenebeck 1386 src/qsamplerUtilities.h
22 capela 75
23     sources = src/main.cpp \
24     src/qsamplerOptions.cpp \
25 capela 264 src/qsamplerChannel.cpp \
26 capela 75 src/qsamplerMessages.cpp \
27 capela 961 src/qsamplerInstrument.cpp \
28     src/qsamplerInstrumentList.cpp \
29 capela 431 src/qsamplerDevice.cpp \
30 schoenebeck 1386 src/qsamplerUtilities.cpp \
31 capela 961 src/qsamplerInstrumentForm.ui \
32     src/qsamplerInstrumentListForm.ui \
33 capela 426 src/qsamplerDeviceForm.ui \
34 capela 75 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 capela 525 @make -f $(name).mak
46 capela 75
47 schoenebeck 545
48     # NOTE: DO NOT DELETE $(DESTDIR) in install and uninstall rules !!!
49     # It is mandatory for Debian packaging.
50    
51 capela 75 install: $(name) icons/$(name).png
52 capela 631 @install -d -v -m 0755 $(DESTDIR)$(prefix)/bin
53 capela 1255 @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/pixmaps
54     @install -d -v -m 0755 $(DESTDIR)$(prefix)/share/applications
55 capela 631 @install -v -m 0755 $(name) $(DESTDIR)$(prefix)/bin/$(name)
56 capela 1255 @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 capela 75
59 schoenebeck 545 uninstall: $(DESTDIR)$(prefix)/bin/$(name)
60     @rm -vf $(DESTDIR)$(prefix)/bin/$(name)
61 capela 1255 @rm -vf $(DESTDIR)$(prefix)/share/pixmaps/$(name).png
62     @rm -vf $(DESTDIR)$(prefix)/share/applications/$(name).desktop
63 capela 75
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