[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.8 and 1.9

version 1.8, 2000/01/19 02:38:51 version 1.9, 2000/01/19 06:25:47
Line 1 
Line 1 
 ## $OpenXM: OpenXM/src/kan96xx/plugin/Makefile,v 1.7 2000/01/18 09:46:53 takayama Exp $  ## $OpenXM: OpenXM/src/kan96xx/plugin/Makefile,v 1.8 2000/01/19 02:38:51 takayama Exp $
   
 OPENXM=../../../../OpenXM  OPENXM=../../../../OpenXM
 OPEMXM_CONTRIB=../../../../OpenXM_contrib  OPEMXM_CONTRIB=../../../../OpenXM_contrib
Line 6  GC=$(OPEMXM_CONTRIB)/gc
Line 6  GC=$(OPEMXM_CONTRIB)/gc
 GMP=$(OPEMXM_CONTRIB)/gmp  GMP=$(OPEMXM_CONTRIB)/gmp
 KAN96XX=$(OPENXM)/src/kan96xx  KAN96XX=$(OPENXM)/src/kan96xx
   
 AR=/usr/bin/ar  #AR=/usr/bin/ar
   AR=ar
 RM=/bin/rm  RM=/bin/rm
   
 CC=gcc  CC=gcc
 CFLAGS+=-g -I$(GMP) -I../Kan  #CFLAGS+=-g -I$(GMP) -I../Kan
   CFLAGS=-g -I$(GMP) -I../Kan
   
 all: all-gc all-gmp asirconv.a cmo.a file2.a ox.a sample.a sm1Socket.a  all: all-gc all-gmp asirconv.a cmo.a file2.a ox.a sample.a sm1Socket.a
   
Line 27  all-gmp:
Line 29  all-gmp:
         (cd $(KAN96XX) ; make all-gmp)          (cd $(KAN96XX) ; make all-gmp)
   
 asirconv.a: asirconv.o  asirconv.a: asirconv.o
           $(AR) ru $@ $?
           $(GC)/if_not_there $(GC)/on_sparc_sunos5 ranlib $@
   
 asirconv.o: asir.h asir.hh asirconv.c  asirconv.o: asir.h asir.hh asirconv.c
   
 cmo.a: cmo.o cmo-gmp.o  cmo.a: cmo.o cmo-gmp.o
           $(AR) ru $@ $?
           $(GC)/if_not_there $(GC)/on_sparc_sunos5 ranlib $@
   
 cmo.o: cmo.h cmo.c cmo-gmp.c file2.h mathcap.h cmotag.htmp \  cmo.o: cmo.h cmo.c cmo-gmp.c file2.h mathcap.h cmotag.htmp \
         oxMessageTag.h oxFunctionId.h          oxMessageTag.h oxFunctionId.h
Line 53  cmo.h: cmo0.h cmotag.h
Line 59  cmo.h: cmo0.h cmotag.h
         @cat cmotag.h cmo0.h >> cmo.h          @cat cmotag.h cmo0.h >> cmo.h
   
 file2.a: file2.o  file2.a: file2.o
           $(AR) ru $@ $?
           $(GC)/if_not_there $(GC)/on_sparc_sunos5 ranlib $@
   
 file2.o: file2.h file2.c  file2.o: file2.h file2.c
   
Line 84  oxmisc.o: ox.h ox.hh ox_kan.h oxmisc.c
Line 92  oxmisc.o: ox.h ox.hh ox_kan.h oxmisc.c
 oxmisc2.o: cmo.h mathcap.h ox.h ox.hh ox_kan.h oxmisc2.c  oxmisc2.o: cmo.h mathcap.h ox.h ox.hh ox_kan.h oxmisc2.c
   
 sample.a: sample.o  sample.a: sample.o
           $(AR) ru $@ $?
           $(GC)/if_not_there $(GC)/on_sparc_sunos5 ranlib $@
   
 sample.o: sample.h sample.hh sample.c  sample.o: sample.h sample.hh sample.c
   
 sm1Socket.a: sm1Socket.o  sm1Socket.a: sm1Socket.o
           $(AR) ru sm1Socket.a sm1Socket.o
           $(GC)/if_not_there $(GC)/on_sparc_sunos5 ranlib sm1Socket.a
   
 sm1Socket.o: sm1Socket.h sm1Socket.hh sm1Socket.c  sm1Socket.o: sm1Socket.h sm1Socket.hh sm1Socket.c
   
 sm1pvm.a: sm1pvm.o  sm1pvm.a: sm1pvm.o
           $(AR) ru $@ $?
           $(GC)/if_not_there $(GC)/on_sparc_sunos5 ranlib $@
   
 sm1pvm.o: sm1pvm.h sm1pvm.hh sm1pvm.c  sm1pvm.o: sm1pvm.h sm1pvm.hh sm1pvm.c
         $(CC) $(CFLAGS) -I $(PVM_ROOT)/include -c sm1pvm.c          $(CC) $(CFLAGS) -I $(PVM_ROOT)/include -c sm1pvm.c
Line 109  libasir.a:
Line 123  libasir.a:
 .c.o:  .c.o:
         $(CC) $(CFLAGS) -c $<          $(CC) $(CFLAGS) -c $<
   
 .o.a:  # GNU make only.
         $(AR) ru $@ $?  #.o.a:
         $(GC)/if_not_there $(GC)/on_sparc_sunos5 ranlib $@  #       $(AR) ru $@ $?
   #       $(GC)/if_not_there $(GC)/on_sparc_sunos5 ranlib $@

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

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