File: Makefile.in

package info (click to toggle)
libtlen 20041113-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 832 kB
  • ctags: 1,514
  • sloc: ansic: 13,713; sh: 214; makefile: 156
file content (52 lines) | stat: -rw-r--r-- 866 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#
# Ostatnia aktualizacja:
#	$Id: Makefile.in,v 1.9 2002/12/09 19:00:45 mati Exp $
#

prefix = @prefix@
datadir = @datadir@
mandir = @mandir@

MAKE = @MAKE@
INSTALL = @INSTALL@

SUBDIRS = lib examples docs

all: libtlen

libtlen:
	cd lib && $(MAKE) all

przyklady:
	cd examples && $(MAKE) all

doce:
	cd docs && $(MAKE) all

install:	all install-libtlen

install-libtlen:
	cd lib && $(MAKE) install

clean:	clean-libtlen clean-examples clean-docs

clean-libtlen:
	cd lib && $(MAKE) clean

clean-examples:
	cd examples && $(MAKE) clean

clean-docs:
	cd docs && $(MAKE) clean

distclean:	distclean-libtlen distclean-examples distclean-docs
	rm -f *~ config.log config.cache config.status config.h aclocal.m4 Makefile

distclean-libtlen:
	cd lib && $(MAKE) distclean

distclean-examples:
	cd examples && $(MAKE) distclean

distclean-docs:
	cd docs && $(MAKE) distclean