home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / libsrc / c / maketmpl < prev    next >
Encoding:
Text File  |  1993-10-16  |  953 b   |  49 lines

  1. # This is file Maketmpl
  2. #
  3. # Copyright (C) 1993 DJ Delorie, 24 Kirsten Ave, Rochester NH 03867-2954
  4. #
  5. # This file is distributed under the terms listed in the document
  6. # "copying.dj", available from DJ Delorie at the address above.
  7. # A copy of "copying.dj" should accompany this file; if not, a copy
  8. # should be available from where this file was obtained.  This file
  9. # may not be distributed without a verbatim copy of "copying.dj".
  10. #
  11. # This file is distributed WITHOUT ANY WARRANTY; without even the implied
  12. # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. #
  14.  
  15. #
  16. # Makefile for libc.a
  17. #
  18.  
  19. ENDOFLIST =
  20.  
  21. CFLAGS = -O2
  22.  
  23. OBJS = \
  24. @dir go32
  25. @dir io
  26. @dir lib
  27. @dir str
  28. @dir sys
  29. @dir gen
  30. @dir dos
  31. @dir bios
  32.     $(ENDOFLIST)
  33.  
  34. ../../lib/libc$(PS).a : $(ODIR) $(OBJS)
  35.     -rm $@
  36.     ar rs $@ $(ODIR)/*.o
  37.  
  38. $(ODIR) :
  39.     md $(ODIR)
  40.  
  41. @dir2 go32
  42. @dir2 io
  43. @dir2 lib
  44. @dir2 str
  45. @dir2 sys
  46. @dir2 gen
  47. @dir2 dos
  48. @dir2 bios
  49.