summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: c5f77fa6bc85051d4026d23ca9059a07a77ace7e (plain)
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
## Helder Correia <helder.correia@netcabo.pt>

bin_PROGRAMS = nload

nload_SOURCES = \
	dataframe.h										\
	device.cpp device.h								\
	devreader.cpp devreader.h						\
	devreaderfactory.cpp devreaderfactory.h			\
	form_field.cpp form_field.h						\
	graph.cpp graph.h								\
	main.cpp main.h									\
	opt_window.cpp opt_window.h						\
	screen.cpp screen.h								\
	setting.cpp setting.h							\
	settingfilter.cpp settingfilter.h               \
	settingstore.cpp settingstore.h					\
	statistics.cpp statistics.h						\
	stringutils.cpp stringutils.h					\
	traffic_window.cpp traffic_window.h				\
	window.cpp window.h

if HAVE_BSD
nload_SOURCES += \
	devreader-bsd.cpp devreader-bsd.h
endif

if HAVE_HPUX
nload_SOURCES += \
	devreader-hpux.cpp devreader-hpux.h
endif

if HAVE_LINUX
nload_SOURCES += \
	devreader-linux.cpp devreader-linux.h			\
	devreader-linux-proc.cpp devreader-linux-proc.h \
	devreader-linux-sys.cpp devreader-linux-sys.h
endif

if HAVE_SOLARIS
nload_SOURCES += \
	devreader-solaris.cpp devreader-solaris.h
endif