CC      = gcc
PROF    = -O3 -g
NOCRYPT =
C_FLAGS =  -Wall $(PROF)
L_FLAGS =  $(PROF)
#MY_FLAGS = -lsocket -lresolv -lnsl

# MY_FLAGS are needed for some SunOS systems. For Linux users, these are
# not necessary. If you are on SunOS and it doesn't compile, try uncommenting
# the above line.

O_FILES = voodoo.o

voodoo: $(O_FILES)
	rm -f voodoo
	$(CC) $(L_FLAGS) -o voodoo $(O_FILES) $(MY_FLAGS)

