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

  1. #------------------------------------------------------------------------------
  2. # UNIX
  3. #------------------------------------------------------------------------------
  4.  
  5. CFLAGS = -g
  6. LIB    = ../../libL.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. _fix.o: _fix.c
  21.     cc -c $(CFLAGS) _fix.c
  22.  
  23.  
  24. clean:
  25.     rm -f $(OBJECTS)
  26.  
  27.