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

Contents of /qsampler/trunk/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 426 - (show annotations) (download)
Mon Mar 7 11:09:32 2005 UTC (19 years ago) by capela
File size: 1106 byte(s)
Device configuration interface preparations.

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/qsamplerDeviceForm.ui.h \
12 src/qsamplerChannelStrip.ui.h \
13 src/qsamplerChannelForm.ui.h \
14 src/qsamplerOptionsForm.ui.h \
15 src/qsamplerMainForm.ui.h
16
17 sources = src/main.cpp \
18 src/qsamplerOptions.cpp \
19 src/qsamplerChannel.cpp \
20 src/qsamplerMessages.cpp \
21 src/qsamplerDeviceForm.ui \
22 src/qsamplerChannelStrip.ui \
23 src/qsamplerChannelForm.ui \
24 src/qsamplerOptionsForm.ui \
25 src/qsamplerMainForm.ui
26
27 all: $(name)
28
29 $(name).mak: $(name).pro
30 @$(qmake) -o $(name).mak $(name).pro
31
32 $(name): $(name).mak $(sources) $(headers)
33 @make -f $(name).mak $(name)
34
35 install: $(name) icons/$(name).png
36 @install -vD $(name) $(prefix)/bin/$(name)
37 @install -vD icons/$(name).png $(prefix)/share/icons/$(name).png
38
39 uninstall: $(prefix)/bin/$(name)
40 @rm -vf $(prefix)/bin/$(name)
41 @rm -vf $(prefix)/share/icons/$(name).png
42
43 clean: $(name).mak
44 @make -f $(name).mak clean
45 @rm -f $(name) $(name).mak
46 @rm -rf *.cache *.log *.status

  ViewVC Help
Powered by ViewVC