File: Makefile.am

package info (click to toggle)
libifp 1.0.0.2-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 1,680 kB
  • ctags: 522
  • sloc: sh: 8,449; ansic: 5,783; makefile: 138
file content (31 lines) | stat: -rw-r--r-- 675 bytes parent folder | download | duplicates (4)
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

# not a GNU package. You can remove this line, if
# have all needed files, that a GNU package needs
AUTOMAKE_OPTIONS = foreign 1.4
INCLUDES = -I$(top_srcdir)/include
#SUBDIRS = src examples
EXTRA_DIST = src/ifp_os.h  src/prim.h  src/ifp_os_linux.c src/main.c docs/man/man3/ifp.h.3 docs/doxygen.in  dpkg/Makefile.in docs/Makefile.in kbuild/Makefile.in
man3_MANS = docs/man/man3/ifp.h.3

if WANT_USERLAND
MAYBE_USERLAND = src examples
endif
if COND_KBUILD
MAYBE_KBUILD = kbuild
endif

SUBDIRS = $(MAYBE_USERLAND) $(MAYBE_KBUILD)

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

docs:
	cd docs; make

deb: dist
	cd dpkg; make

test: check

.PHONY: docs deb test