#####################################################################
#
#   Makefile for the GNU cfengine  (C) Mark Burgess 1994
#
#   It should not be necessary to run make manually. To install
#   cfengine you should cd to the directory containing this
#   file and run "./configure". configure will invoke "make"
#   automatically after generating the makefile. If you want to
#   fine tune it afterwards, type CTRL-C to stop the installation
#   and run make manually.
#
#####################################################################

OBJ = getopt.o \
      getopt1.o

SCI_CC = -cckr

#
# Note that if you are compiling with gcc -- you will almost certainly
# need the ADDITIONAL CFLAGS  -w
#
# On solaris, you can remove the -w flag is you're not using the
# GNU compiler
#

CC=gcc
CFLAGS=-DLINUX -DNO_NETGR -O -w  -w

#####################################################################
# Rules
######################################################################


all: ${OBJ}

.c.o: 
	${CC} -c ${CFLAGS} ${INCLUDE} $<


