Makefile 932 Б
Newer Older
Andrey A. Moiseenko's avatar
Andrey A. Moiseenko включено в состав коммита
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56

include ../Makefile.inc

OBJECTS_DIR = ./

HEADERS = 
SOURCES = stdafx.cpp \
	    exp5.cpp \
	    Gost_BS_MAA.cpp \
	    main.cpp \
	    longint2.cpp \
	    RSA.cpp \
	    AntiRobotCaptcha.cpp

OBJECTS = stdafx.o \
	    exp5.o \
	    Gost_BS_MAA.o \
	    main.o \
	    longint2.o \
	    li_64.o \
	    li_32_64.o \
	    RSA.o \
	    AntiRobotCaptcha.o \
	    sha256/sha224-256.o \
	    sha256/sha384-512.o \
	    sha256/sha.o \
	    sha256/usha.o \
	    sha256/hmac.o \
	    sha256/sha_iface.o
	    

DESTDIR  = 
TARGET   = CryptLib.a

#first: all

all: Makefile $(TARGET)

../ToolsLib/ToolsLib.a: ../ToolsLib/
	$(MAKE) -C ../ToolsLib

#li_64.o: li_64.nasm
#	nasm -f elf64 -g -F dwarf li_64.nasm

#li_32_64.o: li_32_64.nasm
#	nasm -f elf64 -g -F dwarf li_32_64.nasm

#	nasm -f elf64 -g -F dwarf li_64.nasm -l hello.lst

$(TARGET):  $(OBJECTS) ../ToolsLib/ToolsLib.a
	$(AR) $(TARGET) $(OBJECTS)
	ls -l *.a

install:  

uninstall: