File: Makefile.am

package info (click to toggle)
lzo 1.08-1.2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,048 kB
  • ctags: 7,362
  • sloc: ansic: 13,717; sh: 11,176; perl: 338; makefile: 229; asm: 110; python: 109
file content (64 lines) | stat: -rw-r--r-- 1,594 bytes parent folder | download | duplicates (2)
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
53
54
55
56
57
58
59
60
61
62
63
64
## Process this file with automake to create Makefile.in
#
# Copyright (C) 1996-2002 Markus F.X.J. Oberhumer
#

AUTOMAKE_OPTIONS = 1.6 gnu

SUBDIRS = include src ltest examples tests minilzo

EXTRA_DIST = BUGS

ACLOCAL_AMFLAGS = -I acconfig/m4


# /***********************************************************************
# // automake targets
# ************************************************************************/

dist-hook:
	-rm -rf ./$(distdir)/acconfig/
	cp -rpi $(srcdir)/B/ $(srcdir)/acconfig/ $(srcdir)/doc/ $(srcdir)/util/ $(distdir)/
	-rm -f `find ./$(distdir)/ -type l -print`
	-rm -f ./$(distdir)/util/*.fil

check-local: all-am
	./ltest/ltest -mlzo -n2 -q $(top_srcdir)/COPYING
	@echo
	@echo "All checks passed."
	@echo


# /***********************************************************************
# // special targets
# ************************************************************************/

basic-test: all
	./ltest/ltest -mlzo -n2 -q $(top_srcdir)/COPYING
	./tests/align
	./tests/chksum
	./examples/simple
	./minilzo/testmini

test: all
	./ltest/ltest -mavail -n10 -q $(top_srcdir)/COPYING
	$(SHELL) -e $(top_srcdir)/util/check.sh $(top_srcdir)
	./tests/align
	./tests/chksum
	./examples/simple
	./minilzo/testmini
	@echo
	@echo "All tests passed. Now you are ready to install LZO."
	@echo

ltest:
	cd src && $(MAKE)
	cd ltest && $(MAKE) ltest

@MAINT@linux-shared:
@MAINT@	CC="$(CC)" $(SHELL) -e $(srcdir)/b/linux/shared.sh


@MAINT@@GMAKE_TRUE@.PHONY: basic-test check-local dist-hook linux-shared ltest test
@MAINT@@GMAKE_TRUE@-include $(top_srcdir)/maint/make/top.mk