]> git.proxmox.com Git - libtpms.git/blob - src/Makefile.am
build-sys: Fix undefined symbol check on Darwin (OS X)
[libtpms.git] / src / Makefile.am
1 #
2 # src/Makefile.am
3 #
4 # For the license, see the LICENSE file in the root directory.
5 #
6
7 lib_LTLIBRARIES=libtpms.la
8
9 common_CFLAGS = -include tpm_library_conf.h \
10 -I$(top_srcdir)/include/libtpms \
11 $(HARDENING_CFLAGS) \
12 $(SANITIZERS) \
13 $(FUZZER)
14
15
16 LDFLAGS = $(HARDENING_LDFLAGS) $(SANITIZERS) $(FUZZER)
17
18 #
19 # TPM1.2
20 #
21
22 noinst_LTLIBRARIES = libtpms_tpm12.la
23
24 libtpms_la_LIBADD = libtpms_tpm12.la
25
26 libtpms_tpm12_la_LIBADD =
27
28 libtpms_tpm12_la_CFLAGS = $(common_CFLAGS)
29
30 #Build 1.2 TPM
31 libtpms_tpm12_la_CFLAGS += -DTPM_V12
32 # build a PC Client TPM
33 libtpms_tpm12_la_CFLAGS += -DTPM_PCCLIENT
34 # upon initialization have the TPM load the volatile state
35 libtpms_tpm12_la_CFLAGS += -DTPM_VOLATILE_LOAD
36 # build the TPM enabled and activated
37 libtpms_tpm12_la_CFLAGS += -DTPM_ENABLE_ACTIVATE
38 # build with AES support for symmetric crypto
39 libtpms_tpm12_la_CFLAGS += -DTPM_AES
40 # build with libtpms callback support
41 libtpms_tpm12_la_CFLAGS += -DTPM_LIBTPMS_CALLBACKS
42 # let the default NVRAM write to disk
43 libtpms_tpm12_la_CFLAGS += -DTPM_NV_DISK
44 # build a POSIX type of TPM
45 libtpms_tpm12_la_CFLAGS += -DTPM_POSIX
46
47 libtpms_tpm12_la_CFLAGS += @DEBUG_DEFINES@
48
49 CRYPTO_OBJFILES =
50
51 libtpms_tpm12_la_SOURCES = \
52 tpm12/tpm_admin.c \
53 tpm12/tpm_audit.c \
54 tpm12/tpm_auth.c \
55 tpm12/tpm_cryptoh.c \
56 tpm12/tpm_counter.c \
57 tpm12/tpm_daa.c \
58 tpm12/tpm_debug.c \
59 tpm12/tpm_delegate.c \
60 tpm12/tpm_digest.c \
61 tpm12/tpm_error.c \
62 tpm12/tpm_global.c \
63 tpm12/tpm_identity.c \
64 tpm12/tpm_init.c \
65 tpm12/tpm_libtpms_io.c \
66 tpm12/tpm_key.c \
67 tpm12/tpm_load.c \
68 tpm12/tpm_maint.c \
69 tpm12/tpm_memory.c \
70 tpm12/tpm_migration.c \
71 tpm12/tpm_nonce.c \
72 tpm12/tpm_nvfile.c \
73 tpm12/tpm_nvram.c \
74 tpm12/tpm_owner.c \
75 tpm12/tpm_pcr.c \
76 tpm12/tpm_permanent.c \
77 tpm12/tpm_platform.c \
78 tpm12/tpm_process.c \
79 tpm12/tpm_secret.c \
80 tpm12/tpm_session.c \
81 tpm12/tpm_sizedbuffer.c \
82 tpm12/tpm_startup.c \
83 tpm12/tpm_store.c \
84 tpm12/tpm_storage.c \
85 tpm12/tpm_ticks.c \
86 tpm12/tpm_time.c \
87 tpm12/tpm_transport.c \
88 tpm12/tpm_ver.c \
89 tpm12/tpm_svnrevision.c \
90 tpm_tpm12_interface.c \
91 tpm_tpm12_tis.c
92
93 noinst_HEADERS = \
94 tpm12/tpm_admin.h \
95 tpm12/tpm_audit.h \
96 tpm12/tpm_auth.h \
97 tpm12/tpm_commands.h \
98 tpm12/tpm_constants.h \
99 tpm12/tpm_counter.h \
100 tpm12/tpm_crypto.h \
101 tpm12/tpm_cryptoh.h \
102 tpm12/tpm_daa.h \
103 tpm12/tpm_debug.h \
104 tpm12/tpm_delegate.h \
105 tpm12/tpm_digest.h \
106 tpm12/tpm_global.h \
107 tpm12/tpm_identity.h \
108 tpm12/tpm_init.h \
109 tpm12/tpm_io.h \
110 tpm12/tpm_key.h \
111 tpm_library_conf.h \
112 tpm_library_intern.h \
113 tpm12/tpm_load.h \
114 tpm12/tpm_maint.h \
115 tpm12/tpm_migration.h \
116 tpm12/tpm_nonce.h \
117 tpm12/tpm_nvfile.h \
118 tpm12/tpm_nvram_const.h \
119 tpm12/tpm_nvram.h \
120 tpm12/tpm_owner.h \
121 tpm12/tpm_pcr.h \
122 tpm12/tpm_permanent.h \
123 tpm12/tpm_platform.h \
124 tpm12/tpm_process.h \
125 tpm12/tpm_secret.h \
126 tpm12/tpm_session.h \
127 tpm12/tpm_sizedbuffer.h \
128 tpm12/tpm_startup.h \
129 tpm12/tpm_storage.h \
130 tpm12/tpm_store.h \
131 tpm12/tpm_structures.h \
132 tpm12/tpm_svnrevision.h \
133 tpm12/tpm_ticks.h \
134 tpm12/tpm_time.h \
135 tpm12/tpm_transport.h \
136 tpm12/tpm_ver.h
137
138 if LIBTPMS_USE_FREEBL
139
140 libtpms_tpm12_la_SOURCES += tpm12/tpm_crypto_freebl.c
141 libtpms_tpm12_la_LIBADD += -lfreebl -lgmp -lnspr4 -lnssutil3 -lnss3
142
143 #work-around broken freebl includes
144 libtpms_tpm12_la_CFLAGS += $(shell [ ! -r /usr/include/nss3/alghmac.h ] && \
145 touch alghmac.h && \
146 echo -I./)
147 # tpm12/tpm_crypto_freebl.c: work around #include "blapi.h" : should be <nss3/blapi.h>
148 libtpms_tpm12_la_CFLAGS += $(shell nss-config --cflags)
149 #including nss3/blapi.h requires a look into nspr4 dir
150 libtpms_tpm12_la_CFLAGS += $(shell nspr-config --cflags)
151
152 else
153
154 if LIBTPMS_USE_OPENSSL
155
156 libtpms_tpm12_la_SOURCES += tpm12/tpm_crypto.c
157 libtpms_tpm12_la_LIBADD += -lcrypto
158
159 endif # LIBTPMS_USE_OPENSSL
160
161 endif # LIBTPMS_USE_FREEBL
162
163 # TPM2
164 #
165
166 if WITH_TPM2
167
168 noinst_LTLIBRARIES += libtpms_tpm2.la
169
170 libtpms_la_LIBADD += libtpms_tpm2.la
171
172 libtpms_tpm2_la_LIBADD =
173
174 libtpms_tpm2_la_CFLAGS = $(common_CFLAGS)
175
176 libtpms_tpm2_la_CFLAGS += -D_POSIX_
177 libtpms_tpm2_la_CFLAGS += -DTPM_POSIX
178 # build with libtpms callback support
179 libtpms_tpm2_la_CFLAGS += -DTPM_LIBTPMS_CALLBACKS
180
181 libtpms_tpm2_la_SOURCES = \
182 tpm2/AlgorithmCap.c \
183 tpm2/AlgorithmTests.c \
184 tpm2/AsymmetricCommands.c \
185 tpm2/AttestationCommands.c \
186 tpm2/Attest_spt.c \
187 tpm2/AuditCommands.c \
188 tpm2/Bits.c \
189 tpm2/BnConvert.c \
190 tpm2/BnEccData.c \
191 tpm2/BnMath.c \
192 tpm2/BnMemory.c \
193 tpm2/Cancel.c \
194 tpm2/CapabilityCommands.c \
195 tpm2/Clock.c \
196 tpm2/ClockCommands.c \
197 tpm2/CommandAudit.c \
198 tpm2/CommandCodeAttributes.c \
199 tpm2/CommandDispatcher.c \
200 tpm2/ContextCommands.c \
201 tpm2/Context_spt.c \
202 tpm2/CryptSelfTest.c \
203 tpm2/CryptUtil.c \
204 tpm2/DA.c \
205 tpm2/DictionaryCommands.c \
206 tpm2/DuplicationCommands.c \
207 tpm2/EACommands.c \
208 tpm2/EncryptDecrypt_spt.c \
209 tpm2/Entity.c \
210 tpm2/Entropy.c \
211 tpm2/EphemeralCommands.c \
212 tpm2/ExecCommand.c \
213 tpm2/Global.c \
214 tpm2/Handle.c \
215 tpm2/HashCommands.c \
216 tpm2/Hierarchy.c \
217 tpm2/HierarchyCommands.c \
218 tpm2/IntegrityCommands.c \
219 tpm2/IoBuffers.c \
220 tpm2/Locality.c \
221 tpm2/LocalityPlat.c \
222 tpm2/ManagementCommands.c \
223 tpm2/Manufacture.c \
224 tpm2/Marshal.c \
225 tpm2/MathOnByteBuffers.c \
226 tpm2/Memory.c \
227 tpm2/NVCommands.c \
228 tpm2/NVDynamic.c \
229 tpm2/NVMem.c \
230 tpm2/NVReserved.c \
231 tpm2/NV_spt.c \
232 tpm2/Object.c \
233 tpm2/ObjectCommands.c \
234 tpm2/Object_spt.c \
235 tpm2/PCR.c \
236 tpm2/PlatformData.c \
237 tpm2/Policy_spt.c \
238 tpm2/Power.c \
239 tpm2/PowerPlat.c \
240 tpm2/PP.c \
241 tpm2/PPPlat.c \
242 tpm2/PrimeData.c \
243 tpm2/PropertyCap.c \
244 tpm2/RandomCommands.c \
245 tpm2/Response.c \
246 tpm2/ResponseCodeProcessing.c \
247 tpm2/RunCommand.c \
248 tpm2/Session.c \
249 tpm2/SessionCommands.c \
250 tpm2/SessionProcess.c \
251 tpm2/SigningCommands.c \
252 tpm2/StartupCommands.c \
253 tpm2/SymmetricCommands.c \
254 tpm2/TestingCommands.c \
255 tpm2/Ticket.c \
256 tpm2/Time.c \
257 tpm2/TpmSizeChecks.c \
258 tpm2/TPMCmdp.c \
259 tpm2/TpmFail.c \
260 tpm2/Unique.c \
261 tpm2/Unmarshal.c \
262 tpm2/Vendor_TCG_Test.c \
263 tpm_tpm2_interface.c \
264 tpm_tpm2_tis.c \
265 \
266 tpm2/NVMarshal.c \
267 tpm2/StateMarshal.c \
268 tpm2/Volatile.c
269
270 noinst_HEADERS += \
271 compiler.h \
272 tpm2/crypto/CryptDes_fp.h \
273 tpm2/crypto/CryptEcc.h \
274 tpm2/crypto/CryptEccKeyExchange_fp.h \
275 tpm2/crypto/CryptEccMain_fp.h \
276 tpm2/crypto/CryptEccSignature_fp.h \
277 tpm2/crypto/CryptHashData.h \
278 tpm2/crypto/CryptHash_fp.h \
279 tpm2/crypto/CryptHash.h \
280 tpm2/crypto/CryptPrime_fp.h \
281 tpm2/crypto/CryptPrimeSieve_fp.h \
282 tpm2/crypto/CryptRand_fp.h \
283 tpm2/crypto/CryptRand.h \
284 tpm2/crypto/CryptRsa_fp.h \
285 tpm2/crypto/CryptRsa.h \
286 tpm2/crypto/CryptSelfTest_fp.h \
287 tpm2/crypto/CryptSym.h \
288 tpm2/crypto/CryptSym_fp.h \
289 tpm2/crypto/CryptTest.h \
290 tpm2/crypto/CryptUtil_fp.h \
291 tpm2/ActivateCredential_fp.h \
292 tpm2/AlgorithmCap_fp.h \
293 tpm2/AlgorithmTests_fp.h \
294 tpm2/Attest_spt_fp.h \
295 tpm2/BaseTypes.h \
296 tpm2/Bits_fp.h \
297 tpm2/Capabilities.h \
298 tpm2/CertifyCreation_fp.h \
299 tpm2/Certify_fp.h \
300 tpm2/ChangeEPS_fp.h \
301 tpm2/ChangePPS_fp.h \
302 tpm2/ClearControl_fp.h \
303 tpm2/Clear_fp.h \
304 tpm2/ClockRateAdjust_fp.h \
305 tpm2/ClockSet_fp.h \
306 tpm2/CommandAttributeData.h \
307 tpm2/CommandAttributes.h \
308 tpm2/CommandAudit_fp.h \
309 tpm2/CommandCodeAttributes_fp.h \
310 tpm2/CommandDispatchData.h \
311 tpm2/CommandDispatcher_fp.h \
312 tpm2/Commit_fp.h \
313 tpm2/CompilerDependencies.h \
314 tpm2/ContextLoad_fp.h \
315 tpm2/ContextSave_fp.h \
316 tpm2/Context_spt_fp.h \
317 tpm2/Create_fp.h \
318 tpm2/CreateLoaded_fp.h \
319 tpm2/CreatePrimary_fp.h \
320 tpm2/CryptSelfTest_fp.h \
321 tpm2/CryptUtil_fp.h \
322 tpm2/DA_fp.h \
323 tpm2/DictionaryAttackLockReset_fp.h \
324 tpm2/DictionaryAttackParameters_fp.h \
325 tpm2/Duplicate_fp.h \
326 tpm2/EccTestData.h \
327 tpm2/ECC_Parameters_fp.h \
328 tpm2/ECDH_KeyGen_fp.h \
329 tpm2/ECDH_ZGen_fp.h \
330 tpm2/EC_Ephemeral_fp.h \
331 tpm2/EncryptDecrypt2_fp.h \
332 tpm2/EncryptDecrypt_fp.h \
333 tpm2/EncryptDecrypt_spt.h \
334 tpm2/EncryptDecrypt_spt_fp.h \
335 tpm2/Entity_fp.h \
336 tpm2/EventSequenceComplete_fp.h \
337 tpm2/EvictControl_fp.h \
338 tpm2/ExecCommand_fp.h \
339 tpm2/FlushContext_fp.h \
340 tpm2/GetCapability_fp.h \
341 tpm2/GetCommandAuditDigest_fp.h \
342 tpm2/GetRandom_fp.h \
343 tpm2/GetSessionAuditDigest_fp.h \
344 tpm2/GetTestResult_fp.h \
345 tpm2/GetTime_fp.h \
346 tpm2/Global.h \
347 tpm2/GpMacros.h \
348 tpm2/Handle_fp.h \
349 tpm2/Hash_fp.h \
350 tpm2/HashSequenceStart_fp.h \
351 tpm2/HashTestData.h \
352 tpm2/HierarchyChangeAuth_fp.h \
353 tpm2/HierarchyControl_fp.h \
354 tpm2/Hierarchy_fp.h \
355 tpm2/HMAC_fp.h \
356 tpm2/HMAC_Start_fp.h \
357 tpm2/Implementation.h \
358 tpm2/Import_fp.h \
359 tpm2/IncrementalSelfTest_fp.h \
360 tpm2/InternalRoutines.h \
361 tpm2/IoBuffers_fp.h \
362 tpm2/LoadExternal_fp.h \
363 tpm2/Load_fp.h \
364 tpm2/Locality_fp.h \
365 tpm2/MAC_fp.h \
366 tpm2/MAC_Start_fp.h \
367 tpm2/MakeCredential_fp.h \
368 tpm2/Manufacture_fp.h \
369 tpm2/Marshal_fp.h \
370 tpm2/MathOnByteBuffers_fp.h \
371 tpm2/Memory_fp.h \
372 tpm2/NV_Certify_fp.h \
373 tpm2/NV_ChangeAuth_fp.h \
374 tpm2/NV_DefineSpace_fp.h \
375 tpm2/NVDynamic_fp.h \
376 tpm2/NV_Extend_fp.h \
377 tpm2/NV_GlobalWriteLock_fp.h \
378 tpm2/NV.h \
379 tpm2/NV_Increment_fp.h \
380 tpm2/NV_Read_fp.h \
381 tpm2/NV_ReadLock_fp.h \
382 tpm2/NV_ReadPublic_fp.h \
383 tpm2/NVReserved_fp.h \
384 tpm2/NV_SetBits_fp.h \
385 tpm2/NV_spt_fp.h \
386 tpm2/NV_UndefineSpace_fp.h \
387 tpm2/NV_UndefineSpaceSpecial_fp.h \
388 tpm2/NV_Write_fp.h \
389 tpm2/NV_WriteLock_fp.h \
390 tpm2/ObjectChangeAuth_fp.h \
391 tpm2/Object_fp.h \
392 tpm2/Object_spt_fp.h \
393 tpm2/PCR_Allocate_fp.h \
394 tpm2/PCR_Event_fp.h \
395 tpm2/PCR_Extend_fp.h \
396 tpm2/PCR_fp.h \
397 tpm2/PCR_Read_fp.h \
398 tpm2/PCR_Reset_fp.h \
399 tpm2/PCR_SetAuthPolicy_fp.h \
400 tpm2/PCR_SetAuthValue_fp.h \
401 tpm2/PlatformData.h \
402 tpm2/Platform_fp.h \
403 tpm2/PolicyAuthorize_fp.h \
404 tpm2/PolicyAuthorizeNV_fp.h \
405 tpm2/PolicyAuthValue_fp.h \
406 tpm2/PolicyCommandCode_fp.h \
407 tpm2/PolicyCounterTimer_fp.h \
408 tpm2/PolicyCpHash_fp.h \
409 tpm2/PolicyDuplicationSelect_fp.h \
410 tpm2/PolicyGetDigest_fp.h \
411 tpm2/PolicyLocality_fp.h \
412 tpm2/PolicyNameHash_fp.h \
413 tpm2/PolicyNV_fp.h \
414 tpm2/PolicyNvWritten_fp.h \
415 tpm2/PolicyOR_fp.h \
416 tpm2/PolicyPassword_fp.h \
417 tpm2/PolicyPCR_fp.h \
418 tpm2/PolicyPhysicalPresence_fp.h \
419 tpm2/PolicyRestart_fp.h \
420 tpm2/PolicySecret_fp.h \
421 tpm2/PolicySigned_fp.h \
422 tpm2/Policy_spt_fp.h \
423 tpm2/PolicyTemplate_fp.h \
424 tpm2/PolicyTicket_fp.h \
425 tpm2/Power_fp.h \
426 tpm2/PP_Commands_fp.h \
427 tpm2/PP_fp.h \
428 tpm2/PRNG_TestVectors.h \
429 tpm2/PropertyCap_fp.h \
430 tpm2/Quote_fp.h \
431 tpm2/ReadClock_fp.h \
432 tpm2/ReadPublic_fp.h \
433 tpm2/ResponseCodeProcessing_fp.h \
434 tpm2/Response_fp.h \
435 tpm2/Rewrap_fp.h \
436 tpm2/RsaTestData.h \
437 tpm2/RSA_Decrypt_fp.h \
438 tpm2/RSA_Encrypt_fp.h \
439 tpm2/SelfTest.h \
440 tpm2/SelfTest_fp.h \
441 tpm2/SequenceComplete_fp.h \
442 tpm2/SequenceUpdate_fp.h \
443 tpm2/Session_fp.h \
444 tpm2/SessionProcess_fp.h \
445 tpm2/SetAlgorithmSet_fp.h \
446 tpm2/SetCommandCodeAuditStatus_fp.h \
447 tpm2/SetPrimaryPolicy_fp.h \
448 tpm2/Shutdown_fp.h \
449 tpm2/Sign_fp.h \
450 tpm2/Simulator_fp.h \
451 tpm2/StartAuthSession_fp.h \
452 tpm2/Startup_fp.h \
453 tpm2/StirRandom_fp.h \
454 tpm2/SupportLibraryFunctionPrototypes_fp.h \
455 tpm2/SymmetricTest.h \
456 tpm2/SymmetricTestData.h \
457 tpm2/swap.h \
458 tpm2/TcpServerPosix_fp.h \
459 tpm2/TestParms_fp.h \
460 tpm2/Ticket_fp.h \
461 tpm2/Time_fp.h \
462 tpm2/TPMB.h \
463 tpm2/TpmBuildSwitches.h \
464 tpm2/TpmError.h \
465 tpm2/TpmFail_fp.h \
466 tpm2/Tpm.h \
467 tpm2/_TPM_Hash_Data_fp.h \
468 tpm2/_TPM_Hash_End_fp.h \
469 tpm2/_TPM_Hash_Start_fp.h \
470 tpm2/_TPM_Init_fp.h \
471 tpm2/TpmSizeChecks_fp.h \
472 tpm2/TpmTcpProtocol.h \
473 tpm2/TpmTypes.h \
474 tpm2/Unmarshal_fp.h \
475 tpm2/Unseal_fp.h \
476 tpm2/VendorString.h \
477 tpm2/Vendor_TCG_Test_fp.h \
478 tpm2/VerifySignature_fp.h \
479 tpm2/ZGen_2Phase_fp.h \
480 \
481 tpm2/NVMarshal.h \
482 tpm2/StateMarshal.h \
483 tpm2/Test.h \
484 tpm2/Volatile.h
485
486 if LIBTPMS_USE_OPENSSL
487
488 libtpms_tpm2_la_SOURCES += \
489 tpm2/crypto/openssl/CryptDes.c \
490 tpm2/crypto/openssl/CryptEccKeyExchange.c \
491 tpm2/crypto/openssl/CryptEccMain.c \
492 tpm2/crypto/openssl/CryptEccSignature.c \
493 tpm2/crypto/openssl/CryptHash.c \
494 tpm2/crypto/openssl/CryptHashData.c \
495 tpm2/crypto/openssl/CryptPrime.c \
496 tpm2/crypto/openssl/CryptPrimeSieve.c \
497 tpm2/crypto/openssl/CryptRand.c \
498 tpm2/crypto/openssl/CryptRsa.c \
499 tpm2/crypto/openssl/CryptSym.c \
500 tpm2/crypto/openssl/TpmToOsslDesSupport.c \
501 tpm2/crypto/openssl/TpmToOsslMath.c \
502 tpm2/crypto/openssl/TpmToOsslSupport.c
503
504 noinst_HEADERS += \
505 tpm2/crypto/openssl/BnConvert_fp.h \
506 tpm2/crypto/openssl/BnMath_fp.h \
507 tpm2/crypto/openssl/BnMemory_fp.h \
508 tpm2/crypto/openssl/BnValues.h \
509 tpm2/crypto/openssl/LibSupport.h \
510 tpm2/crypto/openssl/TpmToOsslDesSupport_fp.h \
511 tpm2/crypto/openssl/TpmToOsslHash.h \
512 tpm2/crypto/openssl/TpmToOsslMath_fp.h \
513 tpm2/crypto/openssl/TpmToOsslMath.h \
514 tpm2/crypto/openssl/TpmToOsslSupport_fp.h \
515 tpm2/crypto/openssl/TpmToOsslSym.h
516
517 libtpms_tpm2_la_CFLAGS += \
518 -I $(srcdir)/tpm2 \
519 -I $(srcdir)/tpm2/crypto \
520 -I $(srcdir)/tpm2/crypto/openssl
521
522 endif # LIBTPMS_USE_OPENSSL
523
524 # some of the original TPM2 files have been modified; in case of an update
525 # we do not want to loose these modifications
526 check:
527 n=`cd $(srcdir) && grep "TPM_LIBTPMS_CALLBACK" $(libtpms_tpm2_la_SOURCES) | wc -l`; \
528 exp=20; \
529 if test $$n -ne $$exp; then \
530 echo "TPM_LIBTPMS_CALLBACK occurrence has changed to $$n from $$exp"; \
531 exit 1; \
532 fi; \
533 n=`cd $(srcdir) && grep TPM2_GetBufferSize tpm2/Implementation.h | grep -E "^#define" | wc -l`; \
534 exp=2; \
535 if test $$n -ne $$exp; then \
536 echo "Lost patches to tpm2/Implementation.h ?"; \
537 exit 1; \
538 fi
539
540 .PHONY: srccheck
541 srccheck:
542 @n=`grep -i "nuvo" $(libtpms_tpm2_la_SOURCES) | wc -l`; \
543 if test $$n -ne 0; then \
544 echo "Filter sources!"; \
545 exit 1; \
546 fi
547
548 all: srccheck
549
550 endif # WITH_TPM2
551
552 #
553 # Library API layer
554 #
555
556 libtpms_la_SOURCES = \
557 tpm_library.c
558
559 libtpms_la_CFLAGS = $(common_CFLAGS)
560
561 libtpms_la_LDFLAGS = -version-info $(LIBTPMS_VERSION_INFO) \
562 -no-undefined
563
564 if HAVE_VERSION_SCRIPT
565 libtpms_la_LDFLAGS += -Wl,--version-script=$(srcdir)/libtpms.syms
566 endif
567
568 LDFLAGS_ARCH = $(findstring -m32, $(CFLAGS))
569 LDFLAGS_ARCH += $(findstring -m64, $(CFLAGS))
570 LDFLAGS_ARCH += $(findstring -m32, $(LDFLAGS))
571 LDFLAGS_ARCH += $(findstring -m64, $(LDFLAGS))
572
573 check-local:
574 @case $(host_os) in \
575 openbsd*) ADDLIBS="-lc" ;; \
576 darwin*) LDFLAGS_OS="-shared" ;; \
577 *) ADDLIBS="" ;; \
578 esac; \
579 ($(CC) $$LDFLAGS_OS $(LDFLAGS_ARCH) -nostdlib -L./.libs -ltpms $$ADDLIBS 2>/dev/null || \
580 (echo "There are undefined symbols in libtpms ($$LDFLAGS_OS $(LDFLAGS_ARCH))";\
581 $(CC) $$LDFLAGS_OS $(LDFLAGS_ARCH) -nostdlib -L./.libs -ltpms $$ADDLIBS 2>&1 | grep libtpms))
582 @case $(host_os) in \
583 openbsd*) ADDLIBS="-lc" ;; \
584 darwin*) LDFLAGS_OS="-shared" ;; \
585 *) ADDLIBS="" ;; \
586 esac; \
587 $(CC) $$LDFLAGS_OS $(LDFLAGS_ARCH) -nostdlib -L./.libs -ltpms $$ADDLIBS 2>/dev/null
588 rm a.out || true
589
590 EXTRA_DIST = \
591 tpm12/tpm_crypto_freebl.c \
592 tpm12/tpm_crypto.c \
593 libtpms.syms \
594 test.syms
595
596 CLEANFILES = a.out