###################################
# Makefile for NEB examples
#
# Last Modified: 03-13-2007
###################################
# Source code directories
SRC_INCLUDE=../include
CC=gcc
CFLAGS=-g -O2 -DHAVE_CONFIG_H -fPIC
LDFLAGS= -shared
LIBS=
prefix=/usr/local/nagios
exec_prefix=${prefix}
BINDIR=${exec_prefix}/bin
INSTALL=/usr/bin/install -c
INSTALL_OPTS=-o mvlad -g mvlad
COMMAND_OPTS=-o mvlad -g mvlad
STRIP=/usr/bin/strip
CP=@CP@
all: helloworld.o
helloworld.o: helloworld.c
$(CC) $(CFLAGS) -o helloworld.o -c helloworld.c $(LDFLAGS) $(LIBS)
clean:
rm -f helloworld.o
rm -f core *.o
rm -f *~ *.*~
distclean: clean
rm -f Makefile
devclean: distclean
install:
=1=
THE END |