home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / diverses / leda / src / graph_al / makefile < prev    next >
Encoding:
Makefile  |  1991-11-15  |  362 b   |  23 lines

  1. #------------------------------------------------------------------------------
  2. # UNIX
  3. #------------------------------------------------------------------------------
  4.  
  5. CFLAGS = -g
  6. LIB    = ../../libG.a
  7. CC     = ../../c++
  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.     ranlib $(LIB)
  19.  
  20. clean:
  21.     rm -f $(OBJECTS)
  22.  
  23.