16 lines
195 B
Makefile
16 lines
195 B
Makefile
############################
|
|
# Makefile for Nagios
|
|
#
|
|
# Last Modified: 04-08-2003
|
|
############################
|
|
|
|
clean:
|
|
rm -f *.o
|
|
rm -f *~
|
|
|
|
distclean: clean
|
|
rm -f Makefile
|
|
|
|
devclean: distclean
|
|
|