/[svn]/gigedit/branches/release1_1_0/Makefile.svn
ViewVC logotype

Annotation of /gigedit/branches/release1_1_0/Makefile.svn

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1236 - (hide annotations) (download)
Sat Jun 16 11:28:29 2007 UTC (16 years, 9 months ago) by persson
Original Path: gigedit/trunk/Makefile.cvs
File size: 1858 byte(s)
* added quick start documentation by Alexander Methke

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     @intltoolize --force --automake
30     @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     clean:
41     @if [ -f Makefile ]; then make distclean; fi || true
42     @rm -rvf *.cache *.log *.status *.m4
43     @rm -rvf src/Makefile.in src/config.h.in src/config.h src/stamp-h.*
44     @rm -rvf po/Makefile.in debian/Makefile.in
45 persson 1236 @rm -rvf doc/Makefile.in doc/quickstart/Makefile.in doc/quickstart/gigedit_quickstart.html
46 schoenebeck 1152 @rm -rvf Makefile.in config.*
47     @rm -rvf missing install-sh mkinstalldirs depcomp ltmain.sh
48     @rm -rvf configure stamp-h.*
49     @find . -type l | xargs rm -f
50     @rm -rvf *~ autom4te.cache \
51     depcomp INSTALL install-sh Makefile Makefile.in missing mkinstalldirs \
52     gigedit-*.tar.gz po/*~ src/*~ gigedit.kdevelop.pcs debug src/a.out \
53     Doxyfile COPYING

  ViewVC Help
Powered by ViewVC