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
428 B
18 lines
428 B
|
|
#
|
|
# Build private cryptnet.lib. It contains all the private and public api's
|
|
#
|
|
|
|
cryptnet_all: $O\cryptntp.lib
|
|
|
|
$O\cryptntp.def: .\cryptnet.src
|
|
@echo Creating $@ from $**
|
|
$(C_PREPROCESSOR_NAME) /DALL_WIN32_EXPORTS /DPRIVATE_VERSION $(C_PREPROCESSOR_FLAGS) $** > $@
|
|
|
|
$O\cryptntp.lib: $O\cryptntp.def $(LIBRARY_OBJS)
|
|
-lib -out:$@ @<<
|
|
$(LIBRARIAN_FLAGS)
|
|
-def:$O\cryptntp.def
|
|
$(LIBRARY_OBJS)
|
|
<<NOKEEP
|
|
|