home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cweb28.zip / Makefile.dif < prev    next >
Makefile  |  1992-12-29  |  2KB  |  70 lines

  1. 57,59c57
  2. < CC = gcc
  3. < # You need this under EMX
  4. < EMXBIND = emxbind
  5. ---
  6. > CC = cc
  7. 67,68c65,66
  8. < CWEAVE = .\cweave.exe
  9. < CTANGLE = .\ctangle.exe
  10. ---
  11. > CWEAVE = ./cweave
  12. > CTANGLE = ./ctangle
  13. 95c93
  14. < all: ctangle.exe cweave.exe
  15. ---
  16. > all: ctangle cweave
  17. 97c95
  18. < cautiously: ctangle.exe
  19. ---
  20. > cautiously: ctangle
  21. 99c97
  22. <     .\ctangle.exe common $(CCHANGES)
  23. ---
  24. >     ./ctangle common $(CCHANGES)
  25. 103c101
  26. <     .\ctangle.exe ctangle $(TCHANGES)
  27. ---
  28. >     ./ctangle ctangle $(TCHANGES)
  29. 117c115
  30. <     $(CC) $(CFLAGS) -DINCLUDEDIR="$(INCLUDEDIR)/" -c common.c
  31. ---
  32. >     $(CC) $(CFLAGS) -DINCLUDEDIR=\"$(INCLUDEDIR)/\" -c common.c
  33. 119,121c117,118
  34. < ctangle.exe: ctangle.o common.o
  35. <     $(CC) $(CFLAGS) -o ctangle ctangle.o common.o
  36. <     $(EMXBIND) ctangle
  37. ---
  38. > ctangle: ctangle.o common.o
  39. >     $(CC) $(CFLAGS) -o ctangle ctangle.o common.o 
  40. 126c123
  41. < cweave.exe: cweave.o common.o
  42. ---
  43. > cweave: cweave.o common.o
  44. 128d124
  45. <     $(EMXBIND) cweave
  46. 140c136
  47. <     .\cweave.exe common.w common-man.ch
  48. ---
  49. >     ./cweave common.w common-man.ch
  50. 142c138
  51. <     .\cweave.exe ctangle.w ctangle-man.ch
  52. ---
  53. >     ./cweave ctangle.w ctangle-man.ch
  54. 144c140
  55. <     .\cweave.exe cweave.w cweave-man.ch
  56. ---
  57. >     ./cweave cweave.w cweave-man.ch
  58. 150c146
  59. <       *.log *.dvi *.toc core cweave.w.[12] cweave.exe ctangle.exe
  60. ---
  61. >       *.log *.dvi *.toc core cweave.w.[12] cweave ctangle
  62. 153c149
  63. <     $(CP) cweave.exe $(DESTDIR)$(DESTPREF)weave
  64. ---
  65. >     $(CP) cweave $(DESTDIR)$(DESTPREF)weave
  66. 155c151
  67. <     $(CP) ctangle.exe $(DESTDIR)$(DESTPREF)tangle
  68. ---
  69. >     $(CP) ctangle $(DESTDIR)$(DESTPREF)tangle
  70.