#
# ncrypt for win32 makefile
#
TARGET=ncrypt

#
# compiler stuff
#
CFLAGS=-g -O4 -march=i686 -funroll-all-loops -ffast-math -DTRACE_KAT_MCT=0 -DSTRICT_ALIGN=0 -DWIN32 -D__GNU_LIBRARY__ -DDNET_H -DHAVE_CONFIG_H

all: $(TARGET)

$(TARGET): cmdline.o \
           decrypt_file.o \
           encrypt_file.o \
           get_decryption_password.o \
           get_encryption_password.o \
           getopt.o \
           getopt1.o \
           isaac.o \
           mem.o \
           ncrypt.o \
           rand_gen.o \
           read_pass.o \
           rijndael-alg-fst.o \
           rijndael-api-fst.o \
           serpent.o \
           sh1strhsh.o \
           sha1.o \
           twofish.o \
           wipe_file.o

clean:
	del *.o
	del $(TARGET)

# eof