[BACK]Return to Imakefile CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000

Diff for /OpenXM_contrib2/asir2000/Attic/Imakefile between version 1.19 and 1.20

version 1.19, 2001/12/28 01:28:54 version 1.20, 2002/07/25 04:47:40
Line 2 
Line 2 
  * Copyright (c) 1994-2000 FUJITSU LABORATORIES LIMITED   * Copyright (c) 1994-2000 FUJITSU LABORATORIES LIMITED
  * All rights reserved.   * All rights reserved.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/Imakefile,v 1.18 2001/12/25 08:59:47 noro Exp $   * $OpenXM$
  */   */
 #define RISA_TOP_DIR  #define RISA_TOP_DIR
 #include "include/Risa.tmpl"  #include "include/Risa.tmpl"
Line 41  DEPLIBS = 
Line 41  DEPLIBS = 
 #endif  #endif
   
 PLIB = parse/libparse.a  PLIB = parse/libparse.a
 GLIB = gc5.3/libasir-gc.a  GLIB = gc/libasir-gc.a
 ELIB = engine/libca.a  ELIB = engine/libca.a
 FLIB=fft/libdft.a  FLIB=fft/libdft.a
 ALIB = asm/libasm.a  ALIB = asm/libasm.a
Line 63  PROGRAMS = asir
Line 63  PROGRAMS = asir
 TOBJ = parse/main.o $(FOBJ)  TOBJ = parse/main.o $(FOBJ)
 UOBJ = parse/umain.o $(FOBJ)  UOBJ = parse/umain.o $(FOBJ)
   
 SUBDIRS = engine fft asm gc5.3 parse builtin io plot lib include  SUBDIRS = engine fft asm parse builtin io plot lib include
   
 LIBS0 = $(BLIB) $(PLIB) $(IOLIB) $(PLLIB) $(ELIB) $(FLIB) $(ALIB)  LIBS0 = $(BLIB) $(PLIB) $(IOLIB) $(PLLIB) $(ELIB) $(FLIB) $(ALIB)
 LIBS = $(LIBS0) $(GLIB)  LIBS = $(LIBS0) $(GLIB)
Line 99  $(LIBASIR): $(LIBS0)
Line 99  $(LIBASIR): $(LIBS0)
         $(RM) $@          $(RM) $@
         ( cd libtmp; $(AR) ../$@ *.o )          ( cd libtmp; $(AR) ../$@ *.o )
         $(RANLIB) $@          $(RANLIB) $@
   
   $(GLIB): parse/gc_risa.o
           ( cd gc; make)
           -rm gc/libasir-gc.a
           cp gc/.libs/libgc.a $(GLIB)
           ar q $(GLIB) parse/gc_risa.o
           $(RANLIB) $(GLIB)
   
 install:: $(PROGRAMS)  install:: $(PROGRAMS)
         MakeDir($(ASIR_LIBDIR))          MakeDir($(ASIR_LIBDIR))

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20

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