1 |
#----------------------------------------------------------------------------------------------------
|
2 |
#$Header: /home/dashley/cvsrep/e3ft_gpl01/e3ft_gpl01/dtaipubs/cron/2010/blackjack_201010/source/bjcceval/Makefile,v 1.4 2012/03/15 23:38:08 dashley Exp $
|
3 |
#----------------------------------------------------------------------------------------------------
|
4 |
|
5 |
bjcceval.exe : cassert.o \
|
6 |
charfunc.o \
|
7 |
main.o \
|
8 |
memops.o \
|
9 |
random.o \
|
10 |
sha512.o \
|
11 |
stdformat.o \
|
12 |
vcinfo.o
|
13 |
gcc -o bjcceval.exe \
|
14 |
cassert.o \
|
15 |
charfunc.o \
|
16 |
main.o \
|
17 |
memops.o \
|
18 |
random.o \
|
19 |
sha512.o \
|
20 |
stdformat.o \
|
21 |
vcinfo.o
|
22 |
|
23 |
cassert.o : cassert.c
|
24 |
gcc -c cassert.c
|
25 |
|
26 |
charfunc.o : charfunc.c
|
27 |
gcc -c charfunc.c
|
28 |
|
29 |
main.o : main.c
|
30 |
gcc -c main.c
|
31 |
|
32 |
memops.o : memops.c
|
33 |
gcc -c memops.c
|
34 |
|
35 |
random.o : random.c
|
36 |
gcc -c random.c
|
37 |
|
38 |
sha512.o : sha512.c
|
39 |
gcc -c sha512.c
|
40 |
|
41 |
stdformat.o : stdformat.c
|
42 |
gcc -c stdformat.c
|
43 |
|
44 |
vcinfo.o : vcinfo.c
|
45 |
gcc -c vcinfo.c
|
46 |
|
47 |
clean :
|
48 |
rm bjcceval.exe *.o *~
|
49 |
|
50 |
#----------------------------------------------------------------------------------------------------
|
51 |
#End of $RCSfile: Makefile,v $.
|
52 |
#----------------------------------------------------------------------------------------------------
|