# Copyright 1999 Damien Miller 
# This code is licensed under the GNU GPL. Please see the file 
# COPYING for details 

# $Id: Makefile,v 1.2 1999/08/24 02:12:56 dmiller Exp $

CFLAGS=-Wall -g -O -DUSE_SHA1

all: nway

nway: nway.o
	$(CC) -o $@ $^ -lcrypto

clean:
	rm -f *.o core 2way nway
