home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / diffs / infozip / unz50p1 / msdos / makefile.gcc
Encoding:
Makefile  |  1993-12-14  |  1.7 KB  |  78 lines

  1. *** orig/infozip/unz50p1/msdos/makefile.gcc    Sat Sep  4 16:26:28 1993
  2. --- src/infozip/unz50p1/msdos/makefile.gcc    Sun Nov 28 01:31:00 1993
  3. ***************
  4. *** 34,40 ****
  5.   default:        unzip.exe zipinfo.exe
  6.   
  7.   .c.o:
  8. !         $(CC) -c $(CFLAGS) $(INCL) $*.c
  9.   
  10.   unzip.o:      unzip.c unzip.h
  11.   
  12. --- 34,40 ----
  13.   default:        unzip.exe zipinfo.exe
  14.   
  15.   .c.o:
  16. !     $(CC) -c $(CFLAGS) $(INCL) $*.c
  17.   
  18.   unzip.o:      unzip.c unzip.h
  19.   
  20. ***************
  21. *** 57,65 ****
  22.   misc.o:       misc.c unzip.h
  23.   
  24.   misc_.o:      misc.c unzip.h
  25. !     copy misc.c misc_.c
  26. !         $(CC) -c $(CFLAGS) -DZIPINFO $(INCL) misc_.c
  27. !     del misc_.c
  28.   
  29.   unreduce.o:   unreduce.c unzip.h
  30.   
  31. --- 57,65 ----
  32.   misc.o:       misc.c unzip.h
  33.   
  34.   misc_.o:      misc.c unzip.h
  35. !     -copy misc.c misc_.c
  36. !     $(CC) -c $(CFLAGS) -DZIPINFO $(INCL) misc_.c
  37. !     -del misc_.c
  38.   
  39.   unreduce.o:   unreduce.c unzip.h
  40.   
  41. ***************
  42. *** 70,80 ****
  43.   # DOS/MS make:
  44.   # -----------
  45.   unzip.exe:      $(OBJS1) $(OBJS2)
  46. !     echo $(OBJS1) > unzip.rsp
  47. !     echo $(OBJS2) >> unzip.rsp
  48. !     $(LD) $(LDFLAGS) @unzip.rsp
  49. !     del unzip.rsp
  50. !     aout2exe unzip
  51.       -del unzip
  52.   
  53.   
  54. --- 70,77 ----
  55.   # DOS/MS make:
  56.   # -----------
  57.   unzip.exe:      $(OBJS1) $(OBJS2)
  58. !     $(LD) $(LDFLAGS) $(OBJS1) $(OBJS2) -o unzip
  59. !     coff2exe unzip
  60.       -del unzip
  61.   
  62.   
  63. ***************
  64. *** 81,86 ****
  65.   # Both makes:  (not tested)
  66.   # ----------
  67.   zipinfo.exe:    $(ZI_OBJS)
  68. !     $(LD) $(LDFLAGS) $(ZI_OBJS) $(LDFLAGS2)
  69. !     aout2exe zipinfo
  70. !     -del zipingo
  71. --- 78,83 ----
  72.   # Both makes:  (not tested)
  73.   # ----------
  74.   zipinfo.exe:    $(ZI_OBJS)
  75. !     $(LD) $(LDFLAGS) $(ZI_OBJS) -o zipinfo $(LDFLAGS2)
  76. !     coff2exe zipinfo
  77. !     -del zipinfo
  78.