mirror of https://github.com/GOSTSec/vanitygen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
470 B
18 lines
470 B
14 years ago
|
CC = cl
|
||
|
OPENSSL_DIR = C:\OpenSSL-Win32
|
||
|
PTHREADS_DIR = C:\pthreads-w32
|
||
|
PCRE_DIR = C:\pcre-7.9-src
|
||
|
CFLAGS = /D_WIN32 /DPTW32_STATIC_LIB /DPCRE_STATIC /I$(OPENSSL_DIR)\include /I$(PTHREADS_DIR) /I$(PCRE_DIR)
|
||
|
LIBS = $(OPENSSL_DIR)\lib\libeay32.dll $(PTHREADS_DIR)\pthread.lib $(PCRE_DIR)\pcre.lib ws2_32.lib
|
||
|
OBJS = vanitygen.obj
|
||
|
|
||
|
all: vanitygen.exe
|
||
|
link /nologo /out:vanitygen.exe $(LIBS)
|
||
|
|
||
|
.c.obj:
|
||
|
$(CC) $(CFLAGS) /Tp$< /Fo$@
|
||
|
|
||
|
clean:
|
||
|
del vanitygen.exe
|
||
|
del vanitygen.obj
|