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

Contents of /qsampler/trunk/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 413 - (show annotations) (download)
Mon Feb 28 22:19:07 2005 UTC (19 years, 1 month ago) by schoenebeck
File size: 1096 byte(s)
* added Debian packaging structure

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

  ViewVC Help
Powered by ViewVC