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

Annotation of OpenXM/src/kan96xx/plugin/Makefile, Revision 1.1

1.1     ! maekawa     1: CC = gcc
        !             2: INCLUDE = -I ../gmp -I ../Kan
        !             3: FLAG = -g
        !             4: all : sample.a sm1Socket.a asirconv.a   cmo.a file2.a ox.a
        !             5: all0 : ak.a libasir.a
        !             6:
        !             7: sample.a : sample.h sample.c sample.hh
        !             8:        $(CC) $(FLAG) $(INCLUDE) -c sample.c
        !             9:        ar ru sample.a sample.o
        !            10:        ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib sample.a
        !            11:
        !            12: sm1Socket.a : sm1Socket.h sm1Socket.c sm1Socket.hh
        !            13:        $(CC) $(FLAG) $(INCLUDE) -c sm1Socket.c
        !            14:        ar ru sm1Socket.a sm1Socket.o
        !            15:        ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib sm1Socket.a
        !            16:
        !            17: sm1pvm.a : sm1pvm.h sm1pvm.c sm1pvm.hh
        !            18:        $(CC) $(FLAG) $(INCLUDE) -I $(PVM_ROOT)/include -c sm1pvm.c
        !            19:        ar ru sm1pvm.a sm1pvm.o
        !            20:        ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib sm1pvm.a
        !            21:
        !            22: asirconv.a : asir.h asirconv.c asir.hh
        !            23:        $(CC) $(FLAG) $(INCLUDE) -c asirconv.c
        !            24:        ar ru asirconv.a asirconv.o
        !            25:        ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib asirconv.a
        !            26:
        !            27: ak.a :
        !            28: #      ln -s /fuji/taka/noro/ak.a
        !            29:        ln -s /dosc/work/noro/ak.a
        !            30:
        !            31: libasir.a :
        !            32: #      ln -s /fuji/taka/noro/libasir.a
        !            33:        ln -s /dosc/work/noro/libasir.a
        !            34:
        !            35: cmo.a : cmo.h cmo.c cmo-gmp.c file2.h mathcap.h cmotag.htmp oxMessageTag.h oxFunctionId.h
        !            36:        $(CC) $(FLAG) $(INCLUDE) -c cmo.c
        !            37:        $(CC) $(FLAG) $(INCLUDE) -I ../gmp/mpn -c cmo-gmp.c
        !            38:        ar ru cmo.a cmo.o cmo-gmp.o
        !            39:        ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib cmo.a
        !            40:
        !            41: cmotag.htmp : cmotagToName
        !            42:        touch cmotag.htmp
        !            43:        /bin/rm  -rf cmotag.htmp
        !            44:        ./cmotagToName >cmotag.htmp
        !            45:
        !            46: cmotagToName : cmotagToName.c cmotag.h
        !            47:        $(CC) -o cmotagToName cmotagToName.c
        !            48:
        !            49: cmo.h : cmo0.h cmotag.h
        !            50:        /bin/rm -f cmo.h
        !            51:        echo "/*cmo.h : Dont edit  this file. */" >cmo.h
        !            52:        cat cmotag.h  >>cmo.h
        !            53:        echo "/*cmo.h : Dont edit  this file. */" >>cmo.h
        !            54:        cat cmo0.h >>cmo.h
        !            55:
        !            56: file2.a : file2.h file2.c
        !            57:        $(CC) $(FLAG) $(INCLUDE) -c file2.c
        !            58:        ar ru file2.a file2.o
        !            59:        ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib file2.a
        !            60:
        !            61: ox.h : ox.a
        !            62: ox.hh : ox.a
        !            63:
        !            64: .c.o :
        !            65:        $(CC) $(FLAG) $(INCLUDE) -c $<
        !            66: mytcpio.o : mytcpio.c ox_kan.h
        !            67: oxmisc.o : oxmisc.c ox_kan.h
        !            68: oxmisc2.o : oxmisc2.c ox_kan.h mathcap.h cmo.h
        !            69:        $(CC) $(FLAG) $(INCLUDE) -c oxmisc2.c
        !            70:
        !            71: ox.a : mytcpio.o oxmisc.o oxmisc2.o ox_kan.h oxx.h oxx.hh
        !            72:        ar ru ox.a mytcpio.o oxmisc.o oxmisc2.o
        !            73:        ../gc/if_not_there ../gc/on_sparc_sunos5 ranlib ox.a
        !            74:        /bin/rm -f tmp.h
        !            75:        echo "/*********  DO NOT EDIT THIS FILE *************/" >tmp.h
        !            76:        cat oxx.h >>tmp.h
        !            77:        cp tmp.h ox.h
        !            78:        /bin/rm -f tmp.h
        !            79:        echo "/*********  DO NOT EDIT THIS FILE *************/" >tmp.h
        !            80:        cat oxx.hh >>tmp.h
        !            81:        cp tmp.h ox.hh
        !            82:        /bin/rm -f tmp.h
        !            83:
        !            84:
        !            85: ox_kan.h : oxMessageTag.h oxFunctionId.h file2.h cmotag.h oxKan0.h mathcap.h
        !            86:        /bin/rm -f ox_kan.h
        !            87:        echo "/* Do not edit this file. */" >ox_kan.h
        !            88:        cat mathcap.h file2.h cmotag.h oxMessageTag.h oxFunctionId.h  oxKan0.h >>ox_kan.h
        !            89:
        !            90:
        !            91: clean :
        !            92:        /bin/rm -f *.a *.o *~ a.out cmotagToName

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