[BACK]Return to Makefile.in CVS log [TXT][DIR] Up to [local] / OpenXM / src / kxx

Diff for /OpenXM/src/kxx/Makefile.in between version 1.2 and 1.3

version 1.2, 2000/03/11 01:18:25 version 1.3, 2000/03/13 06:46:39
Line 1 
Line 1 
 ##  $OpenXM: OpenXM/src/kxx/Makefile.in,v 1.1 2000/02/01 09:59:43 takayama Exp $  ##  $OpenXM: OpenXM/src/kxx/Makefile.in,v 1.2 2000/03/11 01:18:25 takayama Exp $
 ## Targets :  ## Targets :
 ##   all  : generates ox oxlog ox_sm1 oxweave  ##   all  : generates ox oxlog ox_sm1 oxweave
 ##   install : copy the binaries to $(OpenXM_bin),  ##   install : copy the binaries to $(OpenXM_bin),
Line 21  RANLIB=@RANLIB@
Line 21  RANLIB=@RANLIB@
 LIBS=@LIBS@  LIBS=@LIBS@
 CFLAGS = -g  CFLAGS = -g
 DDD=-D_BSD_SOURCE  DDD=-D_BSD_SOURCE
 LINKFLAG=-static  #STATIC_LINK_FLAG=-static
   STATIC_LINK_FLAG=-static
 ########## end of configurations  ########## end of configurations
   
 ### Set the server name in oxmain.c if you do not use the environmental  ### Set the server name in oxmain.c if you do not use the environmental
Line 60  ox_kan.h : $(KANHOME)/plugin/ox_kan.h
Line 61  ox_kan.h : $(KANHOME)/plugin/ox_kan.h
         ln -s $(KANHOME)/plugin/ox_kan.h ox_kan.h          ln -s $(KANHOME)/plugin/ox_kan.h ox_kan.h
   
 ox : oxmain.c $(KANHOME)/plugin/mytcpio.o $(KANHOME)/plugin/oxmisc.o file2.o ox_kan.h  ox : oxmain.c $(KANHOME)/plugin/mytcpio.o $(KANHOME)/plugin/oxmisc.o file2.o ox_kan.h
         $(CC) ${LINKFLAG} $(CFLAGS) ${DDD} oxmain.c $(KANHOME)/plugin/mytcpio.o $(KANHOME)/plugin/oxmisc.o file2.o -o ox  $(LIBS)          $(CC) ${STATIC_LINK_FLAG} $(CFLAGS) ${DDD} oxmain.c $(KANHOME)/plugin/mytcpio.o $(KANHOME)/plugin/oxmisc.o file2.o -o ox  $(LIBS)
   
 ox_null : oxserver00.c ox.a nullstackmachine.o file2.o ox_kan.h  ox_null : oxserver00.c ox.a nullstackmachine.o file2.o ox_kan.h
         $(CC)  ${LINKFLAG} $(CFLAGS)  ${DDD} oxserver00.c ox.a nullstackmachine.o file2.o -o ox_null  $(LIBS) ; \          $(CC)  ${STATIC_LINK_FLAG} $(CFLAGS)  ${DDD} oxserver00.c ox.a nullstackmachine.o file2.o -o ox_null  $(LIBS) ; \
   
 ox_sm1 : oxserver00.c sm1stackmachine.o ox_kan.h ox.a $(KANHOME)/Kan/kanlib.a  ox_sm1 : oxserver00.c sm1stackmachine.o ox_kan.h ox.a $(KANHOME)/Kan/kanlib.a
         $(CC)  ${LINKFLAG} $(CFLAGS)  ${DDD} oxserver00.c sm1stackmachine.o -o ox_sm1  $(LIBS) $(KANLIB)          $(CC)  ${STATIC_LINK_FLAG} $(CFLAGS)  ${DDD} oxserver00.c sm1stackmachine.o -o ox_sm1  $(LIBS) $(KANLIB)
   
 oxlog : oxlog.c  oxlog : oxlog.c
         $(CC)   ${LINKFLAG} ${DDD} -o oxlog oxlog.c          $(CC)   ${STATIC_LINK_FLAG} ${DDD} -o oxlog oxlog.c
   
 oxweave : oxweave.c oxweaveUsage.h  oxweave : oxweave.c oxweaveUsage.h
         $(CC)   ${LINKFLAG} ${DDD} -o oxweave -g oxweave.c          $(CC)   ${STATIC_LINK_FLAG} ${DDD} -o oxweave -g oxweave.c
   
 ## file2.c file2.h is in SSkan/plugin/  ## file2.c file2.h is in SSkan/plugin/
 file2.o : $(KANHOME)/plugin/file2.c  $(KANHOME)/plugin/file2.h  file2.o : $(KANHOME)/plugin/file2.c  $(KANHOME)/plugin/file2.h

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>