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

Annotation of /gigedit/trunk/Makefile.svn

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1152 - (hide annotations) (download)
Mon Apr 9 18:52:39 2007 UTC (17 years ago) by schoenebeck
Original Path: gigedit/trunk/Makefile.cvs
File size: 1738 byte(s)
* added Makefile.cvs (just for standard compliance with other projects)
* added Debian packaging infrastructure

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     @autoheader
32     @automake --add-missing --copy
33     @autoconf
34     ######################################################################
35     # If you are compiling gigedit from CVS, make sure to use the latest #
36     # version of libgig from CVS as well ! #
37     ######################################################################
38    
39     clean:
40     @if [ -f Makefile ]; then make distclean; fi || true
41     @rm -rvf *.cache *.log *.status *.m4
42     @rm -rvf src/Makefile.in src/config.h.in src/config.h src/stamp-h.*
43     @rm -rvf po/Makefile.in debian/Makefile.in
44     @rm -rvf Makefile.in config.*
45     @rm -rvf missing install-sh mkinstalldirs depcomp ltmain.sh
46     @rm -rvf configure stamp-h.*
47     @find . -type l | xargs rm -f
48     @rm -rvf *~ autom4te.cache \
49     depcomp INSTALL install-sh Makefile Makefile.in missing mkinstalldirs \
50     gigedit-*.tar.gz po/*~ src/*~ gigedit.kdevelop.pcs debug src/a.out \
51     Doxyfile COPYING

  ViewVC Help
Powered by ViewVC