Skip to content

Commit 807ae09

Browse files
committed
Update makefiles
1 parent 7c4c61d commit 807ae09

5 files changed

+20
-4
lines changed

libtomcrypt_VS2008.vcproj

+12
Original file line numberDiff line numberDiff line change
@@ -2559,6 +2559,18 @@
25592559
</FileConfiguration>
25602560
</File>
25612561
</Filter>
2562+
<Filter
2563+
Name="sosemanuk"
2564+
>
2565+
<File
2566+
RelativePath="src\stream\sosemanuk\sosemanuk.c"
2567+
>
2568+
</File>
2569+
<File
2570+
RelativePath="src\stream\sosemanuk\sosemanuk_test.c"
2571+
>
2572+
</File>
2573+
</Filter>
25622574
</Filter>
25632575
</Files>
25642576
<Globals>

makefile.mingw

+2-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,8 @@ src/stream/rc4/rc4_stream.o src/stream/rc4/rc4_test.o src/stream/salsa20/salsa20
194194
src/stream/salsa20/salsa20_done.o src/stream/salsa20/salsa20_ivctr64.o \
195195
src/stream/salsa20/salsa20_keystream.o src/stream/salsa20/salsa20_setup.o \
196196
src/stream/salsa20/salsa20_test.o src/stream/sober128/sober128_stream.o \
197-
src/stream/sober128/sober128_test.o
197+
src/stream/sober128/sober128_test.o src/stream/sosemanuk/sosemanuk.o \
198+
src/stream/sosemanuk/sosemanuk_test.o
198199

199200
#List of test objects to compile
200201
TOBJECTS=tests/base32_test.o tests/base64_test.o tests/cipher_hash_test.o tests/common.o \

makefile.msvc

+2-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,8 @@ src/stream/rc4/rc4_stream.obj src/stream/rc4/rc4_test.obj src/stream/salsa20/sal
187187
src/stream/salsa20/salsa20_done.obj src/stream/salsa20/salsa20_ivctr64.obj \
188188
src/stream/salsa20/salsa20_keystream.obj src/stream/salsa20/salsa20_setup.obj \
189189
src/stream/salsa20/salsa20_test.obj src/stream/sober128/sober128_stream.obj \
190-
src/stream/sober128/sober128_test.obj
190+
src/stream/sober128/sober128_test.obj src/stream/sosemanuk/sosemanuk.obj \
191+
src/stream/sosemanuk/sosemanuk_test.obj
191192

192193
#List of test objects to compile
193194
TOBJECTS=tests/base32_test.obj tests/base64_test.obj tests/cipher_hash_test.obj tests/common.obj \

makefile.unix

+2-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,8 @@ src/stream/rc4/rc4_stream.o src/stream/rc4/rc4_test.o src/stream/salsa20/salsa20
204204
src/stream/salsa20/salsa20_done.o src/stream/salsa20/salsa20_ivctr64.o \
205205
src/stream/salsa20/salsa20_keystream.o src/stream/salsa20/salsa20_setup.o \
206206
src/stream/salsa20/salsa20_test.o src/stream/sober128/sober128_stream.o \
207-
src/stream/sober128/sober128_test.o
207+
src/stream/sober128/sober128_test.o src/stream/sosemanuk/sosemanuk.o \
208+
src/stream/sosemanuk/sosemanuk_test.o
208209

209210
#List of test objects to compile (all goes to libtomcrypt_prof.a)
210211
TOBJECTS=tests/base32_test.o tests/base64_test.o tests/cipher_hash_test.o tests/common.o \

makefile_include.mk

+2-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,8 @@ src/stream/rc4/rc4_stream.o src/stream/rc4/rc4_test.o src/stream/salsa20/salsa20
343343
src/stream/salsa20/salsa20_done.o src/stream/salsa20/salsa20_ivctr64.o \
344344
src/stream/salsa20/salsa20_keystream.o src/stream/salsa20/salsa20_setup.o \
345345
src/stream/salsa20/salsa20_test.o src/stream/sober128/sober128_stream.o \
346-
src/stream/sober128/sober128_test.o
346+
src/stream/sober128/sober128_test.o src/stream/sosemanuk/sosemanuk.o \
347+
src/stream/sosemanuk/sosemanuk_test.o
347348

348349
# List of test objects to compile (all goes to libtomcrypt_prof.a)
349350
TOBJECTS=tests/base32_test.o tests/base64_test.o tests/cipher_hash_test.o tests/common.o \

0 commit comments

Comments
 (0)