Makefile
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. # Makefile - makefile for vw/src/libc/string
  2. #
  3. # modification history
  4. # --------------------
  5. # 01b,12oct01,tam  added repackaging support
  6. # 01a,18jun96,yp   created from 01d of MakeSkel
  7. #
  8. # DESCRIPTION
  9. # This file contains the makefile rules for building the vx library
  10. #
  11. #*/
  12. TGT_DIR=$(WIND_BASE)/target
  13. LIB_BASE_NAME   = os
  14. DOC_FILES= ansiString.c
  15. ## ansiString.c includes the following files
  16. # memchr.c memcmp.c memcpy.c memmove.c memset.c strcat.c 
  17. # strchr.c strcmp.c strcoll.c strcpy.c strcspn.c strerror.c 
  18. # string.c strlen.c strncat.c strncmp.c strncpy.c strpbrk.c 
  19. # strrchr.c strspn.c strstr.c strtok.c strtok_r.c strxfrm.c
  20. OBJS= memchr.o memcmp.o memcpy.o memmove.o memset.o strcat.o strchr.o 
  21. strcmp.o strcoll.o strcpy.o strcspn.o strerror.o strlen.o strncat.o 
  22.         strncmp.o strncpy.o strpbrk.o strrchr.o strspn.o strstr.o strtok.o 
  23.         strtok_r.o strxfrm.o xstate.o
  24. include $(TGT_DIR)/h/make/rules.library