File: Makefile.am

package info (click to toggle)
libstatgrab 0.92.1-1.2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,252 kB
  • sloc: ansic: 12,623; sh: 4,364; perl: 467; makefile: 282
file content (19 lines) | stat: -rw-r--r-- 646 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Makefile for libstatgrab/examples
# https://libstatgrab.org/

if EXAMPLES
noinst_PROGRAMS = network_traffic disk_traffic cpu_usage load_stats \
		  process_stats os_info vm_stats user_list page_stats \
		  network_iface_stats process_snapshot filesys_snapshot \
		  valid_filesystems
endif

# BUILT_HEADERS = helpers.h
EXTRA_network_traffic_SOURCES = helpers.c helpers.h

AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir)\
	      -I$(top_srcdir)/src -I$(top_builddir)/src\
	      -I$(top_srcdir)/src/libstatgrab -I$(top_builddir)/src/libstatgrab \
	       @CLIBFLAGS@

LDADD = $(top_builddir)/src/libstatgrab/libstatgrab.la helpers.o @LINKFLAGS@