# vlad the scanner makefile
#
CC=gcc
OPTS=-Wall -Werror
CFLAGS+= -fomit-frame-pointer -O9 -Wall -ffast-math -fforce-mem \
           -fforce-addr -fcaller-saves -fstrength-reduce -fthread-jumps \
           -funroll-loops -fcse-follow-jumps -fcse-skip-blocks \
           -frerun-cse-after-loop -fexpensive-optimizations -fschedule-insns2
PROGS=rpcscan bannereater pingwin

default: all

bannereater:
	$(CC) $(CFLAGS) bannereater.c -o bannereater

pingwin:
	$(CC) $(CFLAGS) pingwin.c -lpcap -o pingwin

rpcscan:
	$(CC) -o rpcscan rpcscan.c

all: $(PROGS)

clean:
	rm -f *.o core $(PROGS)
#
# $Id: Makefile,v 1.5 2001/07/02 15:33:47 loveless Exp $
