File: Makefile.in

package info (click to toggle)
libtabe 0.2.6-1.2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 5,576 kB
  • ctags: 1,777
  • sloc: ansic: 17,458; sh: 9,848; makefile: 273
file content (39 lines) | stat: -rw-r--r-- 773 bytes parent folder | download | duplicates (5)
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
#
# Copyright 1999, TaBE Project, All Rights Reserved.
# Copyright 1999, Pai-Hsiang Hsiao, All Rights Reserved.
#
# $Id: Makefile.in,v 1.3 2001/08/20 03:53:03 thhsieh Exp $
#
LIBTOOL_DEPS = @LIBTOOL_DEPS@
@SET_MAKE@

all: lib utils data

lib:
	(cd src; $(MAKE))

utils:
	(cd util; $(MAKE))

data:
	(cd tsi-src; $(MAKE))

libtool: $(LIBTOOL_DEPS)
	$(SHELL) ./config.status --recheck

.PHONY: clean distclean install
clean:
	(cd src; $(MAKE) clean)
	(cd util; $(MAKE) clean)
	(cd tsi-src; $(MAKE) clean)

distclean:
	(cd src; $(MAKE) distclean)
	(cd util; $(MAKE) distclean)
	(cd tsi-src; $(MAKE) distclean)
	rm -f Makefile config.h config.cache config.log config.status libtool

install:
	(cd src; $(MAKE) install)
	(cd util; $(MAKE) install)
	(cd tsi-src; $(MAKE) install)