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

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