home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-12-14 | 1.7 KB | 78 lines |
- *** orig/infozip/unz50p1/msdos/makefile.gcc Sat Sep 4 16:26:28 1993
- --- src/infozip/unz50p1/msdos/makefile.gcc Sun Nov 28 01:31:00 1993
- ***************
- *** 34,40 ****
- default: unzip.exe zipinfo.exe
-
- .c.o:
- ! $(CC) -c $(CFLAGS) $(INCL) $*.c
-
- unzip.o: unzip.c unzip.h
-
- --- 34,40 ----
- default: unzip.exe zipinfo.exe
-
- .c.o:
- ! $(CC) -c $(CFLAGS) $(INCL) $*.c
-
- unzip.o: unzip.c unzip.h
-
- ***************
- *** 57,65 ****
- misc.o: misc.c unzip.h
-
- misc_.o: misc.c unzip.h
- ! copy misc.c misc_.c
- ! $(CC) -c $(CFLAGS) -DZIPINFO $(INCL) misc_.c
- ! del misc_.c
-
- unreduce.o: unreduce.c unzip.h
-
- --- 57,65 ----
- misc.o: misc.c unzip.h
-
- misc_.o: misc.c unzip.h
- ! -copy misc.c misc_.c
- ! $(CC) -c $(CFLAGS) -DZIPINFO $(INCL) misc_.c
- ! -del misc_.c
-
- unreduce.o: unreduce.c unzip.h
-
- ***************
- *** 70,80 ****
- # DOS/MS make:
- # -----------
- unzip.exe: $(OBJS1) $(OBJS2)
- ! echo $(OBJS1) > unzip.rsp
- ! echo $(OBJS2) >> unzip.rsp
- ! $(LD) $(LDFLAGS) @unzip.rsp
- ! del unzip.rsp
- ! aout2exe unzip
- -del unzip
-
-
- --- 70,77 ----
- # DOS/MS make:
- # -----------
- unzip.exe: $(OBJS1) $(OBJS2)
- ! $(LD) $(LDFLAGS) $(OBJS1) $(OBJS2) -o unzip
- ! coff2exe unzip
- -del unzip
-
-
- ***************
- *** 81,86 ****
- # Both makes: (not tested)
- # ----------
- zipinfo.exe: $(ZI_OBJS)
- ! $(LD) $(LDFLAGS) $(ZI_OBJS) $(LDFLAGS2)
- ! aout2exe zipinfo
- ! -del zipingo
- --- 78,83 ----
- # Both makes: (not tested)
- # ----------
- zipinfo.exe: $(ZI_OBJS)
- ! $(LD) $(LDFLAGS) $(ZI_OBJS) -o zipinfo $(LDFLAGS2)
- ! coff2exe zipinfo
- ! -del zipinfo
-