home *** CD-ROM | disk | FTP | other *** search
/ ftp.uv.es / 2014.11.ftp.uv.es.tar / ftp.uv.es / pub / unix / pine4.10.tar.gz / pine4.10.tar / pine4.10 / pico / osdep / makefile.bas < prev    next >
BASIC Source File  |  1999-01-22  |  776b  |  36 lines

  1. # Don't edit makefile, edit makefile.bas instead.
  2. #
  3.  
  4. RM=  rm -f
  5.  
  6. ALL=    os-a32.c os-a41.c os-aix.c os-asv.c \
  7.     os-aux.c os-bs2.c os-bsd.c os-bsf.c os-bsi.c os-bso.c \
  8.     os-cvx.c os-dos.c os-dpx.c os-dyn.c \
  9.     os-gen.c os-hpp.c os-isc.c os-lnx.c \
  10.     os-lyn.c os-mnt.c os-neb.c os-nxt.c \
  11.     os-os2.c os-osf.c os-pt1.c os-ptx.c \
  12.     os-s40.c os-sco.c os-sgi.c os-sun.c \
  13.     os-sv4.c os-ult.c os-win.c os-wnt.c \
  14.     os-3b1.c os-att.c os-sc5.c
  15.  
  16. .SUFFIXES: .ic
  17.  
  18. .ic.c:
  19.         ./includer < $*.ic > $*.c
  20.  
  21. all:        includer $(ALL)
  22.  
  23. includer:    includer.c
  24.         $(CC) -o includer includer.c
  25.  
  26. clean:
  27.         $(RM) $(ALL) includer
  28.  
  29. # You don't have to run this unless you change a .ic file.
  30. depend:
  31.         ./makedep
  32.  
  33. # Makedep only catches 1-level deep includes.  If something depends on a
  34. # 2nd-level include, put it here.
  35.  
  36.