Annotation of OpenXM/src/kan96xx/plugin/Makefile.in, Revision 1.6
1.6 ! takayama 1: #$OpenXM: OpenXM/src/kan96xx/plugin/Makefile.in,v 1.5 2004/09/24 07:10:07 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
1.6 ! takayama 21: CFLAG2=@CFLAG2@
1.1 takayama 22:
1.5 takayama 23: all: configure cmo.a file2.a ox.a sample.a sm1Socket.a oxxml.a oxcgi.a
1.1 takayama 24: configure: Makefile
25:
26: Makefile: Makefile.in
27: ./configure
28:
29: ## .SUFFIXES:
30: .c.o:
1.6 ! takayama 31: ${CC} ${CFLAGS} ${CFLAG2} -c $<
1.1 takayama 32:
33: cmo.a: cmo.o cmo-gmp.o
34: $(AR) ru $@ $?
35: ${RANLIB} $@
36:
37: cmo.o: cmo.c cmo.h cmo-gmp.c file2.h mathcap.h cmotag.htmp \
38: oxMessageTag.h oxFunctionId.h
39:
40: cmo-gmp.o: cmo.h cmo.c cmo-gmp.c file2.h mathcap.h cmotag.htmp \
41: oxMessageTag.h oxFunctionId.h
42: ${CC} ${CFLAGS} -I${Gmp_sourcedir} -c cmo-gmp.c
43:
44: cmotag.htmp: cmotagToName
45: $(RM) -f cmotag.htmp
46: ./cmotagToName > cmotag.htmp
47:
48: cmotagToName: cmotag.h cmotagToName.c
49: ${CC} -o cmotagToName cmotagToName.c
50:
51: cmo.h: cmo0.h cmotag.h
52: @echo "Making cmo.h"
53: @${RM} -f cmo.h
54: @echo "/********* DO NOT EDIT THIS FILE *************/" > cmo.h
55: @cat cmotag.h cmo0.h >> cmo.h
56:
57: file2.a: file2.o
58: ${AR} ru $@ $?
59: ${RANLIB} $@
60:
61: file2.o: file2.h file2.c
62:
63: ox.a: mytcpio.o oxmisc.o oxmisc2.o
64: ${AR} ru $@ $?
65: ${RANLIB} $@
66:
67: ox.h: oxx.h
68: @echo "Making ox.h"
69: @echo "/********* DO NOT EDIT THIS FILE *************/" > ox.h
70: @cat oxx.h >> ox.h
71:
72: ox.hh: oxx.hh
73: @echo "Making ox.hh"
74: @$(RM) -f ox.hh
75: @echo "/********* DO NOT EDIT THIS FILE *************/" > ox.hh
76: @cat oxx.hh >> ox.hh
77:
78:
79: ox_kan.h: cmotag.h file2.h mathcap.h oxFunctionId.h oxMessageTag.h oxKan0.h
80: @echo "Making ox_kan.h"
81: @$(RM) -f ox_kan.h
82: @echo "/********* DO NOT EDIT THIS FILE *************/" > ox_kan.h
83: @cat mathcap.h file2.h cmotag.h oxMessageTag.h oxFunctionId.h \
84: oxKan0.h >> ox_kan.h
85:
86: mytcpio.o: ox.h ox.hh ox_kan.h mytcpio.c
87: oxmisc.o: ox.h ox.hh ox_kan.h oxmisc.c
88: oxmisc2.o: cmo.h mathcap.h ox.h ox.hh ox_kan.h oxmisc2.c
89:
90: sample.a: sample.o
91: ${AR} ru $@ $?
92: ${RANLIB} $@
93:
94: sample.o: sample.h sample.hh sample.c
95:
96: sm1Socket.a: sm1Socket.o
97: ${AR} ru sm1Socket.a sm1Socket.o
98: ${RANLIB} sm1Socket.a
99:
100: sm1Socket.o: sm1Socket.h sm1Socket.hh sm1Socket.c
1.4 takayama 101:
102: oxxml.a: oxxml.o
103: ${AR} ru oxxml.a oxxml.o
104: ${RANLIB} oxxml.a
105:
106: oxxml.o: oxxml.h oxxml.hh oxxml.c
107:
108: oxcgi.a: oxcgi.o
109: ${AR} ru oxcgi.a oxcgi.o
110: ${RANLIB} oxcgi.a
111:
112: oxcgi.o: oxcgi.h oxcgi.hh oxcgi.c
1.1 takayama 113:
114:
115: clean:
116: ${RM} -f *.a *.o a.out cmo.h cmotag.hh cmotagToName cmptag.htmp \
117: ox.h ox.hh ox_kan.h
1.2 takayama 118: distclean: clean
119: ${RM} -f Makefile
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>