[BACK]Return to bsd.prog.mk CVS log [TXT][DIR] Up to [local] / src / share / mk

Diff for /src/share/mk/bsd.prog.mk between version 1.13 and 1.14

version 1.13, 1997/04/27 21:38:34 version 1.14, 1997/11/05 09:51:06
Line 8 
Line 8 
   
 .include <bsd.own.mk>  .include <bsd.own.mk>
   
 .SUFFIXES: .out .o .c .cc .C .y .l .s .8 .7 .6 .5 .4 .3 .2 .1 .0  .SUFFIXES: .out .o .c .cc .C .cxx .y .l .s .8 .7 .6 .5 .4 .3 .2 .1 .0
   
 CFLAGS+=        ${COPTS}  CFLAGS+=        ${COPTS}
   
Line 63 
Line 63 
         @mv -f x.c x.C          @mv -f x.c x.C
         @${CXX} ${CXXFLAGS} -c x.C -o ${.TARGET}          @${CXX} ${CXXFLAGS} -c x.C -o ${.TARGET}
         @rm -f x.C          @rm -f x.C
   
   .cxx.o:
           ${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -
           @mv -f x.c x.cxx
           @${CXX} ${CXXFLAGS} -c x.cxx -o ${.TARGET}
           @rm -f x.cxx
 .endif  .endif
   
   

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14