2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

change name to munin-plugins-busybox

This commit is contained in:
Helmut Grohne 2008-06-21 11:45:12 +00:00 committed by Steve Schnepp
parent 209937078b
commit bede1947b2

View File

@ -7,10 +7,10 @@ LINKS=cpu entropy forks fw_packets interrupts load open_files open_inodes \
%.o:%.c
${CC} ${CFLAGS} -c $< -o $@
all:main
for l in ${LINKS}; do test -f $$l || ln -s main $$l; done
main:${OBJS}
all:munin-plugins-busybox
for l in ${LINKS}; do test -f $$l || ln -s munin-plugins-busybox $$l; done
munin-plugins-busybox:${OBJS}
${CC} ${CFLAGS} $^ -o $@
clean:
rm -f main ${OBJS} ${LINKS}
rm -f munin-plugins-busybox ${OBJS} ${LINKS}
.PHONY:all clean