[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / src / kan96xx / plugin

Diff for /OpenXM/src/kan96xx/plugin/Attic/Makefile between version 1.2 and 1.3

version 1.2, 1999/11/02 12:28:57 version 1.3, 1999/12/15 14:33:41
Line 1 
Line 1 
 ## $OpenXM$  ## $OpenXM: OpenXM/src/kan96xx/plugin/Makefile,v 1.2 1999/11/02 12:28:57 takayama Exp $
 CC = gcc  
 INCLUDE = -I ../gmp -I ../Kan  
 FLAG = -g  
 all : sample.a sm1Socket.a asirconv.a   cmo.a file2.a ox.a  all : sample.a sm1Socket.a asirconv.a   cmo.a file2.a ox.a
   
   CC=gcc
   INCLUDE=-I ../gmp -I ../Kan
   FLAG=-g
   .c.o :
           $(CC) $(FLAG) $(INCLUDE) -c $<
   
 all0 : ak.a libasir.a  all0 : ak.a libasir.a
   
 sample.a : sample.h sample.c sample.hh  sample.o : sample.h sample.c sample.hh
         $(CC) $(FLAG) $(INCLUDE) -c sample.c  
   sample.a : sample.o
         ar ru sample.a sample.o          ar ru sample.a sample.o
         ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib sample.a          ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib sample.a
   
 sm1Socket.a : sm1Socket.h sm1Socket.c sm1Socket.hh  sm1Socket.o : sm1Socket.h sm1Socket.c sm1Socket.hh
         $(CC) $(FLAG) $(INCLUDE) -c sm1Socket.c  
   sm1Socket.a : sm1Socket.o
         ar ru sm1Socket.a sm1Socket.o          ar ru sm1Socket.a sm1Socket.o
         ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib sm1Socket.a          ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib sm1Socket.a
   
Line 20  sm1pvm.a : sm1pvm.h sm1pvm.c sm1pvm.hh
Line 26  sm1pvm.a : sm1pvm.h sm1pvm.c sm1pvm.hh
         ar ru sm1pvm.a sm1pvm.o          ar ru sm1pvm.a sm1pvm.o
         ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib sm1pvm.a          ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib sm1pvm.a
   
 asirconv.a : asir.h asirconv.c asir.hh  asirconv.o : asir.h asirconv.c asir.hh
         $(CC) $(FLAG) $(INCLUDE) -c asirconv.c  
   asirconv.a : asirconv.o
         ar ru asirconv.a asirconv.o          ar ru asirconv.a asirconv.o
         ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib asirconv.a          ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib asirconv.a
   
Line 33  libasir.a :
Line 40  libasir.a :
 #       ln -s /fuji/taka/noro/libasir.a  #       ln -s /fuji/taka/noro/libasir.a
         ln -s /dosc/work/noro/libasir.a          ln -s /dosc/work/noro/libasir.a
   
 cmo.a : cmo.h cmo.c cmo-gmp.c file2.h mathcap.h cmotag.htmp oxMessageTag.h oxFunctionId.h  cmo.o : cmo.h cmo.c cmo-gmp.c file2.h mathcap.h cmotag.htmp oxMessageTag.h oxFunctionId.h
         $(CC) $(FLAG) $(INCLUDE) -c cmo.c  
   cmo-gmp.o : cmo.h cmo.c cmo-gmp.c file2.h mathcap.h cmotag.htmp oxMessageTag.h oxFunctionId.h
         $(CC) $(FLAG) $(INCLUDE) -I ../gmp/mpn -c cmo-gmp.c          $(CC) $(FLAG) $(INCLUDE) -I ../gmp/mpn -c cmo-gmp.c
   cmo.a : cmo.o cmo-gmp.o
         ar ru cmo.a cmo.o cmo-gmp.o          ar ru cmo.a cmo.o cmo-gmp.o
         ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib cmo.a          ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib cmo.a
   
Line 54  cmo.h : cmo0.h cmotag.h
Line 63  cmo.h : cmo0.h cmotag.h
         echo "/*cmo.h : Dont edit  this file. */" >>cmo.h          echo "/*cmo.h : Dont edit  this file. */" >>cmo.h
         cat cmo0.h >>cmo.h          cat cmo0.h >>cmo.h
   
 file2.a : file2.h file2.c  file2.o : file2.h file2.c
         $(CC) $(FLAG) $(INCLUDE) -c file2.c  
   file2.a : file2.o
         ar ru file2.a file2.o          ar ru file2.a file2.o
         ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib file2.a          ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib file2.a
   
 ox.h : ox.a  
 ox.hh : ox.a  
   
 .c.o :  
         $(CC) $(FLAG) $(INCLUDE) -c $<  
 mytcpio.o : mytcpio.c ox_kan.h  mytcpio.o : mytcpio.c ox_kan.h
 oxmisc.o : oxmisc.c ox_kan.h  oxmisc.o : oxmisc.c ox_kan.h
 oxmisc2.o : oxmisc2.c ox_kan.h mathcap.h cmo.h  oxmisc2.o : oxmisc2.c ox_kan.h mathcap.h cmo.h
         $(CC) $(FLAG) $(INCLUDE) -c oxmisc2.c          $(CC) $(FLAG) $(INCLUDE) -c oxmisc2.c
   
 ox.a : mytcpio.o oxmisc.o oxmisc2.o ox_kan.h oxx.h oxx.hh  ox.a : mytcpio.o oxmisc.o oxmisc2.o ox_kan.h ox.h ox.hh
         ar ru ox.a mytcpio.o oxmisc.o oxmisc2.o          ar ru ox.a mytcpio.o oxmisc.o oxmisc2.o
         ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib ox.a          ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib ox.a
   ox.h : oxx.h
         /bin/rm -f tmp.h          /bin/rm -f tmp.h
         echo "/*********  DO NOT EDIT THIS FILE *************/" >tmp.h          echo "/*********  DO NOT EDIT THIS FILE *************/" >tmp.h
         cat oxx.h >>tmp.h          cat oxx.h >>tmp.h
         cp tmp.h ox.h          cp tmp.h ox.h
   ox.hh : oxx.hh
         /bin/rm -f tmp.h          /bin/rm -f tmp.h
         echo "/*********  DO NOT EDIT THIS FILE *************/" >tmp.h          echo "/*********  DO NOT EDIT THIS FILE *************/" >tmp.h
         cat oxx.hh >>tmp.h          cat oxx.hh >>tmp.h

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

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