home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / vbcc / machines / amiga68k / libsrc / Make_vcslib.script < prev    next >
Encoding:
Text File  |  1998-06-24  |  3.5 KB  |  155 lines

  1. echo "This make take some time..."
  2.  
  3. alias cc vc -sd -dontwarn=-1 -O2
  4.  
  5. echo "Processing _main etc..."
  6. cc -c _lmath.s
  7. cc -c _main.c
  8. cc -c errno.c
  9. cc -c _errors.c
  10. cc -c _chkabort.c
  11. cc -c geta4.s
  12. echo "Processing ctype..."
  13. cc -c ctype/#?.c
  14. echo "Processing stdio..."
  15. cc -c stdio/#?.c
  16. echo "Processing stdlib..."
  17. cc -c stdlib/#?.c
  18. echo "Processing string..."
  19. cc -c string/#?.c
  20. echo "Processing time..."
  21. cc -c time/#?.c
  22. echo "Processing setjmp..."
  23. cc -c setjmp/#?.s
  24. echo "Processing signal..."
  25. cc -c signal/#?.c
  26. echo "Processing locale..."
  27. cc -c locale/#?.c
  28.  
  29. echo "Joining everything together..."
  30. alib r vcs _main
  31. alib r vcs _chkabort
  32. alib r vcs _lmath
  33. alib r vcs errno
  34. alib r vcs _errors
  35. alib r vcs geta4
  36. alib r vcs ctype/isalnum
  37. alib r vcs ctype/isalpha
  38. alib r vcs ctype/iscntrl
  39. alib r vcs ctype/isdigit
  40. alib r vcs ctype/isgraph
  41. alib r vcs ctype/islower
  42. alib r vcs ctype/isprint
  43. alib r vcs ctype/ispunct
  44. alib r vcs ctype/isspace
  45. alib r vcs ctype/isupper
  46. alib r vcs ctype/isxdigit
  47. alib r vcs ctype/tolower
  48. alib r vcs ctype/toupper
  49. alib r vcs ctype/_ctype_
  50. alib r vcs stdio/fclose
  51. alib r vcs stdio/fflush
  52. alib r vcs stdio/fgetc
  53. alib r vcs stdio/fgets
  54. alib r vcs stdio/fopen
  55. alib r vcs stdio/fputc
  56. alib r vcs stdio/fputs
  57. alib r vcs stdio/gets
  58. alib r vcs stdio/puts
  59. alib r vcs stdio/remove
  60. alib r vcs stdio/rename
  61. alib r vcs stdio/_fillbuf
  62. alib r vcs stdio/_flushbuf
  63. alib r vcs stdio/_putbuf
  64. alib r vcs stdio/__v0printf
  65. alib r vcs stdio/__v0fprintf
  66. alib r vcs stdio/__v0sprintf
  67. alib r vcs stdio/ungetc
  68. alib r vcs stdio/ftell
  69. alib r vcs stdio/fseek
  70. alib r vcs stdio/fread
  71. alib r vcs stdio/fwrite
  72. alib r vcs stdio/setvbuf
  73. alib r vcs stdio/vfprintf
  74. alib r vcs stdio/printf
  75. alib r vcs stdio/vprintf
  76. alib r vcs stdio/fprintf
  77. alib r vcs stdio/vfscanf
  78. alib r vcs stdio/vsprintf
  79. alib r vcs stdio/sprintf
  80. alib r vcs stdio/vscanf
  81. alib r vcs stdio/scanf
  82. alib r vcs stdio/fscanf
  83. alib r vcs stdio/sscanf
  84. alib r vcs stdio/vsscanf
  85. alib r vcs stdio/getchar
  86. alib r vcs stdio/freopen
  87. alib r vcs stdio/tmpfile
  88. alib r vcs stdio/tmpnam
  89. alib r vcs stdio/setbuf
  90. alib r vcs stdio/putchar
  91. alib r vcs stdio/rewind
  92. alib r vcs stdio/fgetpos
  93. alib r vcs stdio/fsetpos
  94. alib r vcs stdio/clearerr
  95. alib r vcs stdio/feof
  96. alib r vcs stdio/ferror
  97. alib r vcs stdio/perror
  98. alib r vcs stdlib/malloc
  99. alib r vcs stdlib/system
  100. alib r vcs stdlib/rand
  101. alib r vcs stdlib/calloc
  102. alib r vcs stdlib/strtol
  103. alib r vcs stdlib/strtoul
  104. alib r vcs stdlib/atol
  105. alib r vcs stdlib/atoi
  106. alib r vcs stdlib/abs
  107. alib r vcs stdlib/labs
  108. alib r vcs stdlib/div
  109. alib r vcs stdlib/ldiv
  110. alib r vcs stdlib/qsort
  111. alib r vcs stdlib/bsearch
  112. alib r vcs stdlib/getenv
  113. alib r vcs stdlib/abort
  114. alib r vcs stdlib/atexit
  115. alib r vcs stdlib/realloc
  116. alib r vcs string/memchr
  117. alib r vcs string/memcmp
  118. alib r vcs string/memcpy
  119. alib r vcs string/memmove
  120. alib r vcs string/memset
  121. alib r vcs string/strcat
  122. alib r vcs string/strcpy
  123. alib r vcs string/strcmp
  124. alib r vcs string/strncmp
  125. alib r vcs string/strncpy
  126. alib r vcs string/strchr
  127. alib r vcs string/strncat
  128. alib r vcs string/strstr
  129. alib r vcs string/strpbrk
  130. alib r vcs string/strrchr
  131. alib r vcs string/strspn
  132. alib r vcs string/strlen
  133. alib r vcs string/strcspn
  134. alib r vcs string/strerror
  135. alib r vcs string/strtok
  136. alib r vcs time/__gmtoffset
  137. alib r vcs time/time
  138. alib r vcs time/clock
  139. alib r vcs time/asctime
  140. alib r vcs time/localtime
  141. alib r vcs time/mktime
  142. alib r vcs time/gmtime
  143. alib r vcs time/strftime
  144. alib r vcs setjmp/setjmp
  145. alib r vcs signal/signal
  146. alib r vcs signal/raise
  147. alib r vcs locale/setlocale
  148. alib r vcs locale/localeconv
  149. alib r vcs geta4
  150.  
  151. copy vcs.lib vlib:
  152.  
  153. echo "Done! vcs.lib copied to vlib:"
  154.  
  155.