Rev 455 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
599 | cbradney | 1 | ### Makefile.common |
2 | ### |
||
3 | ### Copyright (C) 2002 by the KDE developers |
||
3 | paul | 4 | |
599 | cbradney | 5 | ### All the real work is done by the shellscript cvs.sh |
6 | |||
3 | paul | 7 | SHELL=/bin/sh |
8 | |||
599 | cbradney | 9 | cvs dist cvs-clean configure configure.in configure.files subdirs package-messages package-merge Makefile.am acinclude.m4: |
10 | @admindir=$(admindir); \ |
||
11 | if test "x$$admindir" = x; then \ |
||
12 | admindir=.; until test -f $$admindir/admin/cvs.sh; do \ |
||
13 | admindir=$$admindir/..; \ |
||
14 | if test `cd $$admindir && pwd` = / ; then break; fi; \ |
||
15 | done; \ |
||
16 | admindir=$$admindir/admin; \ |
||
17 | if test -f $$admindir/cvs.sh; then :; else \ |
||
18 | echo "Can't find the admin/ directory in any parent of the"; \ |
||
19 | echo "current directory. Please set it with admindir=..."; \ |
||
20 | exit 1; \ |
||
21 | fi; \ |
||
22 | fi; \ |
||
23 | if test "$@" = "package-merge"; then \ |
||
24 | MAKE="$(MAKE)" POFILES="$(POFILES)" PACKAGE="$(PACKAGE)" \ |
||
25 | $(SHELL) $$admindir/cvs.sh package-merge ;\ |
||
3 | paul | 26 | else \ |
599 | cbradney | 27 | MAKE="$(MAKE)" $(SHELL) $$admindir/cvs.sh $@ ;\ |
3 | paul | 28 | fi |
29 | |||
599 | cbradney | 30 | configure.in: configure.files subdirs |
3 | paul | 31 | configure.files: subdirs |
32 | |||
33 | .SILENT: |
||
34 | |||
599 | cbradney | 35 | .PHONY: cvs dist cvs-clean package-merge package-messages |