~registry/lvm2/master

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Alasdair Kergon
  • Date: 2004-02-13 22:56:45 UTC
  • Revision ID: git-v1:69792976e44ae1178a99a03a34f75040c95a45d7
BasicĀ internationalisationĀ support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
top_srcdir = @top_srcdir@
21
21
VPATH = @srcdir@
22
22
 
23
 
SUBDIRS = include man lib tools
 
23
SUBDIRS = include man 
 
24
 
 
25
ifeq ("@INTL@", "yes")
 
26
  SUBDIRS += po
 
27
endif
 
28
 
 
29
SUBDIRS += lib tools
24
30
 
25
31
ifeq ($(MAKECMDGOALS),distclean)
26
32
  SUBDIRS += lib/format1 \
 
33
             po \
27
34
             test/mm test/device test/format1 test/regex test/filters
28
35
endif
29
36
 
30
37
include make.tmpl
31
38
 
32
39
lib: include
33
 
tools: include lib
 
40
tools: lib
 
41
po: lib tools
34
42
 
 
43
ifeq ("@INTL@", "yes")
 
44
lib.pofile: include.pofile
 
45
tools.pofile: lib.pofile
 
46
po.pofile: lib.pofile tools.pofile
 
47
pofile: po.pofile
 
48
endif
35
49