File: Makefile.am

package info (click to toggle)
libyahoo 0.18.4-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 900 kB
  • ctags: 361
  • sloc: sh: 6,708; ansic: 4,227; makefile: 84; perl: 53
file content (52 lines) | stat: -rw-r--r-- 1,099 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
## Process this file with automake to produce Makefile.in

bin_SCRIPTS = libyahoo-config
lib_LTLIBRARIES = libyahoo.la
pkginclude_HEADERS = libyahoo.h libyahoo-debug.h libyahoo-proto.h
noinst_HEADERS = memtok.h \
	libyahoo-authors.h

DISTCLEANFILES= libyahoo.lsm libyahoo-devel.spec libyahoo-config

# Couldn't figure out how to get this into config.h
DEFS = -DLIBEXECDIR=\"$(libexecdir)\" -DPKGDATADIR=\"$(pkgdatadir)\"

libyahoo_la_SOURCES = \
	libyahoo.c \
	memtok.c \
	libyahoo-debug.c

libyahoo-authors.h: AUTHORS get-authors.pl
	perl get-authors.pl

EXTRA_DIST = \
	acconfig.h \
	libyahoo-devel.spec \
	libyahoo-devel.spec.in \
	libyahoo-config \
	libyahoo-config.in \
	libyahoo.lsm.in \
	refresh \
	NOTES \
	get-authors.pl \
	protocol.txt

#
# Development utility targets
#
indent:
	for p in $(SOURCES) $(HEADERS); do \
		case $$p in \
		*lex.yy.v*|*y.tab.*) \
			echo Skipping Indent: $$p ; \
			;; \
		*) \
			echo Indenting: $$p ; \
			indent $(srcdir)/$$p ; \
			rm -f $(srcdir)/$$p~ ; \
			;; \
		esac ; \
	done

proto:
	$(srcdir)/mkproto $(srcdir)/libyahoo.c $(srcdir)/libyahoo-proto.h