File: Makefile.am

package info (click to toggle)
ptop 3.6.2-5
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,516 kB
  • sloc: ansic: 18,233; sh: 3,493; makefile: 124; awk: 44
file content (82 lines) | stat: -rw-r--r-- 1,580 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
AUTOMAKE_OPTIONS = foreign

AM_CPPFLAGS = $(DBCFLAGS)
AM_LDFLAGS = $(DBLDFLAGS)

sigdesc.h: sigconv.awk $(SIGNAL_H)
	$(AWK) -f $(srcdir)/sigconv.awk $(SIGNAL_H) > sigdesc.h 

bin_PROGRAMS = pg_top

pg_top_SOURCES = color.c commands.c display.c getopt.c screen.c sprompt.c pg.c \
		pg_top.c username.c utils.c version.c
EXTRA_pg_top_SOURCES = \
		machine/m_aix43.c \
		machine/m_aix5.c \
		machine/m_decosf1.c \
		machine/m_freebsd.c \
		machine/m_hpux10.c \
		machine/m_hpux7.c \
		machine/m_hpux8.c \
		machine/m_hpux9.c \
		machine/m_irix5.c \
		machine/m_irixsgi.c \
		machine/m_linux.c \
		machine/m_linuxthr.c \
		machine/m_macosx.c \
		machine/m_netbsd.c \
		machine/m_openbsd.c \
		machine/m_sco5.c \
		machine/m_sunos4.c \
		machine/m_sunos5.c \
		machine/m_svr4.c \
		machine/m_svr5.c
pg_top_LDADD = @OBJ@ $(DBLDFLAGS)
pg_top_DEPENDENCIES = @OBJ@

man_MANS = pg_top.1

EXTRA_DIST = \
		FAQ \
		HISTORY \
		INSTALL \
		LICENSE \
		Porting \
		README \
		TODO \
		Y2K \
		boolean.h \
		c.h \
		color.h \
		commands.h \
		configure \
		display.h \
		help.h \
		layout.h \
		loadavg.h \
		machine.h \
		message.h \
		os.h \
		pg.h \
		pg_trace.h \
		port.h \
		pg_top.h \
		screen.h \
		sigconv.awk \
		sigdesc.h \
		username.h \
		utils.h \
		version.h \
		machine/m_decosf1.man \
		machine/m_freebsd.man \
		machine/m_linux.man \
		machine/m_netbsd.man \
		machine/m_sco5.man \
		machine/m_svr4.man \
		machine/m_svr5.man \
		machine/m_hpux9.man \
		machine/m_hpux10.man \
		machine/m_linuxthr.man \
		machine/m_sunos5.man \
		machine/m_macosx.man \
		machine/m_sunos4.man