1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-08-02 22:28:24 +00:00

added if_err_ plugin

This commit is contained in:
Helmut Grohne 2009-01-22 14:30:31 +00:00 committed by Steve Schnepp
parent a61fdfd103
commit bdf2dd257a
3 changed files with 130 additions and 4 deletions

View file

@ -1,9 +1,9 @@
CC=gcc
CFLAGS=-W -Wall -pedantic -Wextra -g -O2
OBJS=main.o common.o cpu.o entropy.o forks.o fw_packets.o interrupts.o load.o \
open_files.o open_inodes.o processes.o swap.o uptime.o
LINKS=cpu entropy forks fw_packets interrupts load open_files open_inodes \
processes swap uptime
OBJS=main.o common.o cpu.o entropy.o forks.o fw_packets.o interrupts.o \
if_err_.o load.o open_files.o open_inodes.o processes.o swap.o uptime.o
LINKS=cpu entropy forks fw_packets interrupts if_err_eth0 load open_files \
open_inodes processes swap uptime
%.o:%.c
${CC} ${CFLAGS} -c $< -o $@