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

Contents of /qsampler/trunk/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 75 - (show annotations) (download)
Thu May 13 10:23:10 2004 UTC (19 years, 10 months ago) by capela
File size: 994 byte(s)
Initial alpha release.

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

  ViewVC Help
Powered by ViewVC