📄 makefile.cfg
字号:
## Copyright (C) 1999-2005 Wind River Systems, Inc.# All rights reserved. Provided under license only.# Distribution or other use of this software is only# permitted pursuant to the terms of a license agreement# from Wind River Systems (and is otherwise prohibited).# Refer to that license agreement for terms of use.## [clearcase]# modification history# -------------------# 01a,20apr05,job update copyright notices### common/lib#$#equate(PRODUCTH $#filepath($(SRCDIR) target h wrn wm common))$#makefile-init()############################################################################### OBJECT FILE DEFINITION SECTION$#equate(WEAKPRNG_OBJS $#objs(weakprng))$#equate(PRNG_OBJS $#if-installed(COMMON_PRNG $#objs(prng)))$#equate(MD4_OBJS $#if-installed(COMMON_MD4 $#objs(md4)))$#equate(MD5_OBJS $#if-installed(COMMON_MD5 $#objs(md5)))$#equate(SHA_OBJS $#if-installed(COMMON_SHA $#objs(sha)))$#equate(HMAC_OBJS $#if-installed(COMMON_HMAC $#objs(hmac)))$#equate(DESTESTOBJS $#objs(des_test))$#equate(STRING_OBJS $#if-installed(COMMON_STRTOL $#objs(strtol)) $#if-installed(COMMON_STRTOUL $#objs(strtoul)) $#if-installed(COMMON_STRICMP $#objs(stricmp)) $#if-installed(COMMON_STRNICMP $#objs(strnicmp)) $#if-installed(COMMON_MEMCMP $#objs(memcmp)) $#if-installed(COMMON_SNPRINTF $#objs(snprintf)) $#if-installed(COMMON_STRNCPY $#objs(strncpy)))$#equate(THREAD_OBJS $#if-installed(THREAD_DEBUG $#objs(thd_dbg)))$#equate(FIXED64_OBJS $#if-installed(COMMON_FIXED64 $#objs(fixed64)))$#equate(OBJS $#objs(cmn_init) $#(WEAKPRNG_OBJS) $#(PRNG_OBJS) $#(MD4_OBJS) $#(MD5_OBJS) $#(SHA_OBJS) $#(HMAC_OBJS) $#(STRING_OBJS) $#(THREAD_OBJS) $#(FIXED64_OBJS))all: $#libs(epcommon) $#if-installed(COMMON_DES_TEST $#exes(des_test)) $#dummy()############################################################################### Make the library itself$#makelib(epcommon $#(OBJS) $(MAKEFILENAME))############################################################################### Make the des verification program$#makeexe(des_test $#progn($#(DESTESTOBJS)) $#progn($#libs(epcommon) $#libs(epdes)) $(MAKEFILENAME))############################################################################### commands to figure out how big this all compiles tosizes: $#dummy() $#makesizehdr(Epilogue Common) $#if-installed(COMMON_PRNG $#makesize(PRNG $(PRNG_OBJS)) $#makesizenone(PRNG)) $#if-installed(COMMON_MD4 $#makesize(MD4 $(MD4_OBJS)) $#makesizenone(MD4)) $#if-installed(COMMON_MD5 $#makesize(MD5 $(MD5_OBJS)) $#makesizenone(MD5)) $#if-installed(COMMON_SHA $#makesize(SHA $(SHA_OBJS)) $#makesizenone(SHA)) $#if-installed(COMMON_HMAC $#makesize(HMAC $(HMAC_OBJS)) $#makesizenone(HMAC)) $#makesize(WEAKPRNG $(WEAKPRNG_OBJS))clean: $#dummy() -$(RM) $#objs(*) -$(RM) $#libs(epcommon) -$(RM) $#libs(epdes) -$(RM) $#exes(des_test)$#clean()############################################################################### file dependencies$#objs(cmn_init) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common cmn_init.h) $#filepath($(SRCDIR) target h wrn wm common prng.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(oemtypes.h) cmn_init.c)$#objs(des_test) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common config.h) $#filepath($(SRCDIR) target h wrn wm common des.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(common.h) $#port-hdr(oemtypes.h) des_test.c)$#objs(fixed64) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common bug.h) $#filepath($(SRCDIR) target h wrn wm common bugdef.h) $#filepath($(SRCDIR) target h wrn wm common config.h) $#filepath($(SRCDIR) target h wrn wm common fixed64.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(common.h) $#port-hdr(oemtypes.h) fixed64.c)$#objs(hmac) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common config.h) $#filepath($(SRCDIR) target h wrn wm common hmac.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(common.h) $#port-hdr(oemtypes.h) hmac.c)$#objs(md4) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common config.h) $#filepath($(SRCDIR) target h wrn wm common glue.h) $#filepath($(SRCDIR) target h wrn wm common md4.h) $#filepath($(SRCDIR) target h wrn wm common snprintf.h) $#filepath($(SRCDIR) target h wrn wm common stdf.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(common.h) $#port-hdr(oemtypes.h) md4.c)$#objs(md5) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common md5.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(oemtypes.h) md5.c)$#objs(memcmp) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common config.h) $#filepath($(SRCDIR) target h wrn wm common stdf.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(common.h) $#port-hdr(oemtypes.h) memcmp.c)$#objs(prng) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common config.h) $#filepath($(SRCDIR) target h wrn wm common md5.h) $#filepath($(SRCDIR) target h wrn wm common prng.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(common.h) $#port-hdr(oemtypes.h) prng.c)$#objs(sha) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common config.h) $#filepath($(SRCDIR) target h wrn wm common sha.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(common.h) $#port-hdr(oemtypes.h) sha.c)$#objs(snprintf) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common config.h) $#filepath($(SRCDIR) target h wrn wm common snprintf.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(common.h) $#port-hdr(oemtypes.h) snprintf.c)$#objs(stricmp) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common stdf.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(oemtypes.h) stricmp.c)$#objs(strncpy) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common stdf.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(oemtypes.h) strncpy.c)$#objs(strnicmp) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common stdf.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(oemtypes.h) strnicmp.c)$#objs(strtol) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common stdf.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(oemtypes.h) strtol.c)$#objs(strtoul) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common stdf.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(oemtypes.h) strtoul.c)$#objs(thd_dbg) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm attache config.h) $#filepath($(SRCDIR) target h wrn wm attache packet.h) $#filepath($(SRCDIR) target h wrn wm common bug.h) $#filepath($(SRCDIR) target h wrn wm common bugdef.h) $#filepath($(SRCDIR) target h wrn wm common config.h) $#filepath($(SRCDIR) target h wrn wm common thread.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(attache.h) $#port-hdr(common.h) $#port-hdr(oemtypes.h) $#port-hdr(thdport.h) thd_dbg.c)$#objs(weakprng) : $##backslashes( $#filepath($(SRCDIR) target h wrn wm common config.h) $#filepath($(SRCDIR) target h wrn wm common glue.h) $#filepath($(SRCDIR) target h wrn wm common types.h) $#filepath($(SRCDIR) target h wrn wm common weakprng.h) $#filepath($(SRCDIR) target h wrn wm common install.h) $#port-hdr(common.h) $#port-hdr(oemtypes.h) weakprng.c)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -