#
# Makefile for the Offline NT Password Editor
#
#
# Change here to point to the needed MD4 & DES libraries & .h files
# See INSTALL for more info.
#
DESPATH=../libdes
MDPATH=..

CC=gcc
CFLAGS= -O -I. -I$(DESPATH) -I$(MDPATH)

LIBS=$(DESPATH)/libdes.a $(MDPATH)/md4/md4c.o

all:	chntpw

chntpw: chntpw.c
	$(CC) $(CFLAGS) -o chntpw chntpw.c -DDP=$(DESPATH) -DMP=$(MDPATH) $(LIBS)

