home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / diverses / leda / src / graph / makefile < prev   
Encoding:
Makefile  |  1992-05-08  |  385 b   |  23 lines

  1. #------------------------------------------------------------------------------
  2. # UNIX
  3. #------------------------------------------------------------------------------
  4.  
  5. CFLAGS = -g
  6. LIB    = ../../libG.a
  7. CC     = ztc
  8. o      = .o
  9.  
  10. include Make.lst
  11.  
  12. .c.o:
  13.     $(CC) -c $(CFLAGS) $*.c
  14.  
  15.  
  16. $(LIB): $(OBJECTS)
  17.     ar r $(LIB) $?
  18.         zorlib $(LIB)
  19.  
  20. clean:
  21.     rm -f $(OBJECTS)
  22.  
  23.