Annotation of OpenXM_contrib2/asir2000/Imakefile, Revision 1.18
1.10 noro 1: /*
2: * Copyright (c) 1994-2000 FUJITSU LABORATORIES LIMITED
3: * All rights reserved.
4: *
1.18 ! noro 5: * $OpenXM: OpenXM_contrib2/asir2000/Imakefile,v 1.17 2001/12/25 02:37:21 noro Exp $
1.10 noro 6: */
1.1 noro 7: #define RISA_TOP_DIR
8: #include "include/Risa.tmpl"
9:
10: #define IHaveSubdirs
11: #define PassCDebugFlags
12:
1.15 noro 13: #ifdef FreeBSDArchitecture
14: EXTRALIB=-lcompat
15: #endif
16:
1.1 noro 17: #ifdef SunArchitecture
18: EXTRASTDLIB= $(MPILIB) -ldl
19: #endif
20:
21: #if defined(AlphaArchitecture) && OSMajorVersion < 4
22: EXTRASTDLIB=/usr/lib/libots.a
23: #endif
24:
25: #if defined(LinuxArchitecture) && DefaultLinuxCLibMajorVersion < 6
26: LIBCLIB=/usr/lib/libc.a -lm
27: #else
28: LIBCLIB=-lm
29: #endif
30:
1.5 noro 31: #if defined(USE_PLOT)
1.12 saito 32: #ifdef FreeBSDArchitecture
33: LOCAL_LIBRARIES = -L/usr/X11R6/lib XawClientLibs $(XWCHARLIB)
34: #else
1.1 noro 35: LOCAL_LIBRARIES = -L/usr/openwin/lib XawClientLibs $(XWCHARLIB)
1.12 saito 36: #endif
1.1 noro 37: DEPLIBS = XawClientDepLibs
1.5 noro 38: #else
39: LOCAL_LIBRARIES =
40: DEPLIBS =
41: #endif
1.1 noro 42:
43: PLIB = parse/libparse.a
1.16 noro 44: GLIB = gc5.3/libasir-gc.a
1.1 noro 45: ELIB = engine/libca.a
46: FLIB=fft/libdft.a
47: ALIB = asm/libasm.a
48: IOLIB = io/libio.a
49: BLIB = builtin/libfunc.a
50:
51: #ifdef USE_PLOT
52: PLLIB = plot/libplot.a
53: #else
54: PLLIB =
55: #endif
56:
1.17 noro 57: #if defined(cygwinArchitecture)
58: PROGRAMS = asir.exe
59: #else
1.15 noro 60: PROGRAMS = asir
1.17 noro 61: #endif
1.1 noro 62:
63: TOBJ = parse/main.o $(FOBJ)
64: UOBJ = parse/umain.o $(FOBJ)
65:
1.16 noro 66: SUBDIRS = engine fft asm gc5.3 parse builtin io plot lib include
1.1 noro 67:
1.11 murao 68: LIBS0 = $(BLIB) $(PLIB) $(IOLIB) $(PLLIB) $(ELIB) $(FLIB) $(ALIB)
1.4 noro 69: LIBS = $(LIBS0) $(GLIB)
1.11 murao 70: PILIBS = $(IOLIB) $(GLIB) $(ELIB) $(FLIB) $(ALIB)
1.1 noro 71:
1.4 noro 72:
1.1 noro 73: MakeSubdirs($(SUBDIRS))
74: DependSubdirs($(SUBDIRS))
75:
1.15 noro 76: #if 0
77: AllTarget($(PROGRAMS) asir.o)
78: #else
1.4 noro 79: AllTarget($(PROGRAMS) $(LIBRARIES))
1.15 noro 80: #endif
1.1 noro 81:
82: #ifndef NormalRelocTarget
83: #define NormalRelocTarget(program,objects,deplibs,locallibs,syslibs) @@\
84: program: objects deplibs @@\
85: RemoveTargetProgram($@) @@\
86: ld -r objects locallibs $(LDLIBS) syslibs $(EXTRA_LOAD_FLAGS) -o $@ @@\
87: @@\
88: clean:: @@\
89: $(RM) program
90: #endif /* NormalRelocTarget */
91:
1.15 noro 92: NormalProgramTarget(asir,$(TOBJ),$(LIBS),$(LIBS),$(PARILIB) $(RLLIB) $(LOCAL_LIBRARIES) $(EXTRALIB) $(LAPACKLIB) $(LIBCLIB) $(FEPLIB) $(EXTRASTDLIB) )
93: NormalRelocTarget(asir.o,$(UOBJ),$(LIBS),$(LIBS),$(PARILIB) $(RLLIB) $(EXTRALIB) $(LIBCLIB) $(EXTRASTDLIB))
1.1 noro 94:
1.5 noro 95: $(LIBASIR): $(LIBS0)
1.4 noro 96: -mkdir libtmp
97: ( cd libtmp; $(RM) * )
1.5 noro 98: for i in $(LIBS0); do ( cd libtmp; ar x ../$$i; chmod 644 * ) done
1.4 noro 99: $(RM) $@
100: ( cd libtmp; $(AR) ../$@ *.o )
101: $(RANLIB) $@
102:
1.5 noro 103: install:: $(PROGRAMS)
1.1 noro 104: MakeDir($(ASIR_LIBDIR))
1.15 noro 105: $(INSTALL) $(INSTALLFLAGS) $(PROGRAMS) $(ASIR_LIBDIR)
1.5 noro 106:
1.7 noro 107: install-bin-lib:: $(PROGRAMS)
108: MakeDir($(ASIR_LIBDIR))
109: $(INSTALL) $(INSTALLFLAGS) $(PROGRAMS) $(ASIR_BINDIR)
1.9 noro 110: (cd lib; make ASIR_LIBDIR=$(ASIR_LIBDIR) install-lib)
1.15 noro 111: $(RM) $(ASIR_LIBDIR)/asir
112: (cd $(ASIR_LIBDIR); $(LN) ./../../bin/asir asir)
113: $(RM) $(ASIR_LIBDIR)/ox_asir
114: (cd $(ASIR_LIBDIR); $(LN) asir ox_asir)
115: $(RM) $(ASIR_LIBDIR)/ox_launch
1.18 ! noro 116: #if defined(cygwinArchitecture)
! 117: (cd $(ASIR_LIBDIR); $(CP) asir.exe ox_launch.exe)
! 118: #else
1.15 noro 119: (cd $(ASIR_LIBDIR); $(LN) asir ox_launch)
1.18 ! noro 120: #endif
1.15 noro 121: $(RM) $(ASIR_LIBDIR)/ox_plot
122: (cd $(ASIR_LIBDIR); $(LN) asir ox_plot)
1.7 noro 123:
1.5 noro 124: install-libasir:: $(LIBASIR)
1.15 noro 125: MakeDir($(ROOTDIR)/lib)
126: $(INSTALL) $(INSTALLFLAGS) $(LIBASIR) $(ROOTDIR)/lib
127: $(RANLIB) $(ROOTDIR)/lib/$(LIBASIR)
1.5 noro 128:
129: install-libgc:: $(GLIB)
1.4 noro 130: MakeDir($(ROOTDIR)/lib)
1.5 noro 131: $(INSTALL) $(INSTALLFLAGS) $(GLIB) $(ROOTDIR)/lib
132: $(RANLIB) $(ROOTDIR)/lib/`basename $(GLIB)`
1.1 noro 133:
1.2 noro 134: install-lib::
1.15 noro 135: MakeDir($(ROOTDIR)/lib)
1.9 noro 136: (cd lib; make ASIR_LIBDIR=$(ASIR_LIBDIR) install-lib)
1.15 noro 137: $(RM) $(ASIR_LIBDIR)/ox_asir
138: (cd $(ASIR_LIBDIR); $(LN) asir ox_asir)
139: $(RM) $(ASIR_LIBDIR)/ox_launch
1.18 ! noro 140: #if defined(cygwinArchitecture)
! 141: (cd $(ASIR_LIBDIR); $(CP) asir.exe ox_launch.exe)
! 142: #else
1.15 noro 143: (cd $(ASIR_LIBDIR); $(LN) asir ox_launch)
1.18 ! noro 144: #endif
1.15 noro 145: $(RM) $(ASIR_LIBDIR)/ox_plot
146: (cd $(ASIR_LIBDIR); $(LN) asir ox_plot)
147: $(RM) $(ASIR_BINDIR)/asir
148: $(LN) $(ASIR_LIBDIR)/asir $(ASIR_BINDIR)/asir
149:
150: install-doc::
151: (cd lib; make ASIR_LIBDIR=$(ASIR_LIBDIR) install-doc)
1.7 noro 152:
153: install-include::
1.15 noro 154: (cd include; make ASIR_LIBDIR=$(ASIR_LIBDIR) install-include)
155: (cd parse; make ASIR_LIBDIR=$(ASIR_LIBDIR) install-include)
1.16 noro 156: (cd gc5.3; make ASIR_LIBDIR=$(ASIR_LIBDIR) install-include)
1.4 noro 157:
158: clean::
159: $(RM) -r libtmp $(LIBRARIES)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>