CC      = g++
#PROF    = -g3
NOCRYPT =
#Uncomment the next line if you want request support
#DBUGFLG = -DREQUESTS
#C_FLAGS = -Wall $(PROF) $(NOCRYPT) $(DBUGFLG)
#L_FLAGS = $(PROF) -lcrypt

O_FILES = i_net.o spy.o

blah: $(O_FILES)
	rm -f sspy
#	$(CC) $(L_FLAGS) -o sspy $(O_FILES)
	$(CC) -o sspy $(O_FILES)

.c.o: i_net.h
#	$(CC) -c $(C_FLAGS) $<
	$(CC) -c $<
