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

Annotation of OpenXM/src/kan96xx/plugin/Makefile.in, Revision 1.3

1.3     ! takayama    1: #$OpenXM: OpenXM/src/kan96xx/plugin/Makefile.in,v 1.2 2003/09/11 00:52:06 takayama Exp $
1.1       takayama    2: #
                      3: #  depends on install-gmp
                      4: #  The source directory of gmp must exist.
                      5: #
1.3     ! takayama    6: OpenXM_HOME=@prefix@
1.1       takayama    7: OpenXM_include=${OpenXM_HOME}/include
1.3     ! takayama    8: #
        !             9: OpenXM_HOME_debug=../../..
        !            10: OpenXM_contrib=${OpenXM_HOME_debug}/../OpenXM_contrib
1.1       takayama   11: Kan96xx=..
                     12: Gmp_sourcedir=${OpenXM_contrib}/gmp
                     13:
                     14: #AR=/usr/bin/ar
                     15: AR=ar
                     16: RM=rm
                     17: CC=@CC@
                     18: RANLIB=@RANLIB@
                     19: #CFLAGS+=-g -I${OpenXM_include} -I${Kan96xx}/Kan -D_BSD_SOURCE
                     20: CFLAGS=@CFLAGS@ -g -I${OpenXM_include} -I${Kan96xx}/Kan -D_BSD_SOURCE
                     21:
                     22: all: configure cmo.a file2.a ox.a sample.a sm1Socket.a
                     23: configure: Makefile
                     24:
                     25: Makefile: Makefile.in
                     26:        ./configure
                     27:
                     28: ## .SUFFIXES:
                     29: .c.o:
                     30:        ${CC} ${CFLAGS}  -c $<
                     31:
                     32: cmo.a: cmo.o cmo-gmp.o
                     33:        $(AR) ru $@ $?
                     34:        ${RANLIB} $@
                     35:
                     36: cmo.o: cmo.c cmo.h cmo-gmp.c file2.h mathcap.h cmotag.htmp \
                     37:        oxMessageTag.h oxFunctionId.h
                     38:
                     39: cmo-gmp.o: cmo.h cmo.c cmo-gmp.c file2.h mathcap.h cmotag.htmp \
                     40:        oxMessageTag.h oxFunctionId.h
                     41:        ${CC} ${CFLAGS} -I${Gmp_sourcedir} -c cmo-gmp.c
                     42:
                     43: cmotag.htmp: cmotagToName
                     44:        $(RM) -f cmotag.htmp
                     45:        ./cmotagToName > cmotag.htmp
                     46:
                     47: cmotagToName: cmotag.h cmotagToName.c
                     48:        ${CC} -o cmotagToName cmotagToName.c
                     49:
                     50: cmo.h: cmo0.h cmotag.h
                     51:        @echo "Making cmo.h"
                     52:        @${RM} -f cmo.h
                     53:        @echo "/********* DO NOT EDIT THIS FILE *************/" > cmo.h
                     54:        @cat cmotag.h cmo0.h >> cmo.h
                     55:
                     56: file2.a: file2.o
                     57:        ${AR} ru $@ $?
                     58:        ${RANLIB} $@
                     59:
                     60: file2.o: file2.h file2.c
                     61:
                     62: ox.a: mytcpio.o oxmisc.o oxmisc2.o
                     63:        ${AR} ru $@ $?
                     64:        ${RANLIB} $@
                     65:
                     66: ox.h: oxx.h
                     67:        @echo "Making ox.h"
                     68:        @echo "/********* DO NOT EDIT THIS FILE *************/" > ox.h
                     69:        @cat oxx.h >> ox.h
                     70:
                     71: ox.hh: oxx.hh
                     72:        @echo "Making ox.hh"
                     73:        @$(RM) -f ox.hh
                     74:        @echo "/********* DO NOT EDIT THIS FILE *************/" > ox.hh
                     75:        @cat oxx.hh >> ox.hh
                     76:
                     77:
                     78: ox_kan.h: cmotag.h file2.h mathcap.h oxFunctionId.h oxMessageTag.h oxKan0.h
                     79:        @echo "Making ox_kan.h"
                     80:        @$(RM) -f ox_kan.h
                     81:        @echo "/********* DO NOT EDIT THIS FILE *************/" > ox_kan.h
                     82:        @cat mathcap.h file2.h cmotag.h oxMessageTag.h oxFunctionId.h \
                     83:            oxKan0.h >> ox_kan.h
                     84:
                     85: mytcpio.o: ox.h ox.hh ox_kan.h mytcpio.c
                     86: oxmisc.o: ox.h ox.hh ox_kan.h oxmisc.c
                     87: oxmisc2.o: cmo.h mathcap.h ox.h ox.hh ox_kan.h oxmisc2.c
                     88:
                     89: sample.a: sample.o
                     90:        ${AR} ru $@ $?
                     91:        ${RANLIB} $@
                     92:
                     93: sample.o: sample.h sample.hh sample.c
                     94:
                     95: sm1Socket.a: sm1Socket.o
                     96:        ${AR} ru sm1Socket.a sm1Socket.o
                     97:        ${RANLIB} sm1Socket.a
                     98:
                     99: sm1Socket.o: sm1Socket.h sm1Socket.hh sm1Socket.c
                    100:
                    101:
                    102: clean:
                    103:        ${RM} -f *.a *.o a.out cmo.h cmotag.hh cmotagToName cmptag.htmp \
                    104:                 ox.h ox.hh ox_kan.h
1.2       takayama  105: distclean: clean
                    106:        ${RM} -f Makefile

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