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

  1. #
  2. include Make.lst
  3.  
  4. XLIB  = -L/usr/openwin/lib ../../libWx.a ../../libP.a ../../libG.a ../../libL.a  -lxview -lolgx -lX11 -lm
  5.  
  6.  
  7. CC  = ../../c++
  8. CFLAGS = -g
  9.  
  10.  
  11. .c:
  12.     $(CC)  $(CFLAGS) -c $*.c
  13.     ccC=/bin/cc;export ccC;\
  14.     $(CC) $(CFLAGS) -o $* $*.o $(XLIB)
  15.  
  16. .o:
  17.     ccC=/bin/cc;export ccC;\
  18.     $(CC) $(CFLAGS) -o $* $*.o $(XLIB)
  19.  
  20.  
  21.  
  22.  
  23. all: $(PROGS)
  24.  
  25. delprog:
  26.     rm -f $(PROGS)
  27.  
  28. clean:
  29.     rm -f *.o
  30.     rm -f $(PROGS)
  31.  
  32.