#
# this is the Makefile for NetBSD, use 'mkwin.bat' to build under Windows
#

RM   = /bin/rm -f

OBJS = main.o ini.o vblast.o usb_bsd.o usb_devfs.o usb_desc.o \
	util.o server.o vars.o dh.o random.o bn.o blowfish.o sha.o

all: vb

vb: $(OBJS)
	$(CC) -o vb $(OBJS)

main.o: main.c vblast.h

clean:
	$(RM) vb *.o

#
# The End!
#
