/[svn]/gigedit/trunk/Makefile.svn
ViewVC logotype

Annotation of /gigedit/trunk/Makefile.svn

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1952 - (hide annotations) (download)
Wed Jul 29 18:02:35 2009 UTC (14 years, 8 months ago) by persson
Original Path: gigedit/trunk/Makefile.cvs
File size: 1929 byte(s)
- don't remove COPYING when doing make -f Makefile.cvs clean

1 schoenebeck 1152 default: all
2    
3     all: configure
4    
5     check_dependencies:
6     @if ! which intltoolize > /dev/null ; then \
7     echo "Could not find intltoolize, make sure intltool is installed!"; \
8     exit -1; \
9     fi
10     @if ! which aclocal > /dev/null ; then \
11     echo "Could not find aclocal, make sure automake is installed!"; \
12     exit -1; \
13     fi
14     @if ! which autoconf > /dev/null ; then \
15     echo "Could not find autoconf, make sure it is installed!"; \
16     exit -1; \
17     fi
18     @if ! which autoheader > /dev/null ; then \
19     echo "Could not find autoheader, make sure autoconf is installed!"; \
20     exit -1; \
21     fi
22     @if ! which automake > /dev/null ; then \
23     echo "Could not find automake, make sure it is installed!"; \
24     exit -1; \
25     fi
26    
27     configure: check_dependencies configure.ac Makefile.am \
28     src/Makefile.am
29 persson 1952 @intltoolize --copy --force --automake
30 schoenebeck 1152 @aclocal
31 schoenebeck 1213 @libtoolize --force --copy
32 schoenebeck 1152 @autoheader
33     @automake --add-missing --copy
34     @autoconf
35     ######################################################################
36     # If you are compiling gigedit from CVS, make sure to use the latest #
37     # version of libgig from CVS as well ! #
38     ######################################################################
39    
40 schoenebeck 1396 .PHONY: clean
41    
42 schoenebeck 1152 clean:
43     @if [ -f Makefile ]; then make distclean; fi || true
44     @rm -rvf *.cache *.log *.status *.m4
45     @rm -rvf src/Makefile.in src/config.h.in src/config.h src/stamp-h.*
46     @rm -rvf po/Makefile.in debian/Makefile.in
47 persson 1236 @rm -rvf doc/Makefile.in doc/quickstart/Makefile.in doc/quickstart/gigedit_quickstart.html
48 schoenebeck 1152 @rm -rvf Makefile.in config.*
49     @rm -rvf missing install-sh mkinstalldirs depcomp ltmain.sh
50     @rm -rvf configure stamp-h.*
51     @find . -type l | xargs rm -f
52     @rm -rvf *~ autom4te.cache \
53     depcomp INSTALL install-sh Makefile Makefile.in missing mkinstalldirs \
54     gigedit-*.tar.gz po/*~ src/*~ gigedit.kdevelop.pcs debug src/a.out \
55 persson 1952 Doxyfile intltool-extract.in intltool-merge.in intltool-update.in

  ViewVC Help
Powered by ViewVC