1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-08-11 00:14:37 +00:00

mnc: initial add

This commit is contained in:
Steve Schnepp 2013-02-08 17:36:32 +01:00
parent e041ac2135
commit 52369dbed1
3 changed files with 100 additions and 0 deletions

View file

@ -0,0 +1,14 @@
CC=gcc
CFLAGS=-W -Wall -pedantic -Wextra -g -O2
OBJS=main.o
LINKS=
%.o: %.c
${CC} ${CFLAGS} -c $< -o $@
all: munin-node-c
munin-node-c: ${OBJS}
${CC} ${CFLAGS} $^ -o $@
clean:
rm -f munin-node-c ${OBJS} ${LINKS}
.PHONY: all clean