home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / testzp13.zip / Makefile.Unix < prev    next >
Makefile  |  1997-02-25  |  169b  |  9 lines

  1. testzip:    testzip.o queue.o
  2.     gcc -g -o testzip testzip.o queue.o
  3.  
  4. testzip.o:    testzip.c testzip.h
  5.     gcc -g -c testzip.c -DUNIX
  6.  
  7. queue.o:    queue.c queue.h
  8.     gcc -g -c queue.c
  9.