[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / fep

Annotation of OpenXM_contrib2/fep/Makefile, Revision 1.1

1.1     ! noro        1: #
        !             2: # Copyright (c) 1987-1991 by Software Research Associates, Inc.
        !             3: #
        !             4: # $Header: /home/mmb/utashiro/src/fep/RCS/Makefile,v 4.4 1993/06/10 02:51:15 utashiro Exp $
        !             5: #
        !             6: # Options:
        !             7: #      KANJI:  SHIFT-JIS kanji code handling on ASCII KANJI UNIX
        !             8: #
        !             9: TARGET = fep
        !            10: HEADER = fep_defs.h fep_glob.h fep_funcs.h fep_stat.h
        !            11: SRC    = fep_main.c fep_edit.c fep_hist.c fep_com.c fep_funcs.c fep_set.c \
        !            12:            fep_vi.c fep_util.c fep_alias.c
        !            13: OBJ    = fep_main.o fep_edit.o fep_hist.o fep_com.o fep_funcs.o fep_set.o \
        !            14:            fep_vi.o fep_util.o fep_alias.o
        !            15: DISTRIBUTION\
        !            16:        = Makefile fep.1 $(HEADER) $(SRC) feprc.sample README
        !            17:
        !            18: INSTDIR        = ${PREFIX}/bin
        !            19:
        !            20: #STAT  = -DSTAT#               Delete # for statistic info
        !            21: #KANJI = -DKANJI#              Delete # for KANJI handling
        !            22: CONFIG = $(STAT) $(KANJI) -DTERMIOS
        !            23:
        !            24: #DEBUG = -g
        !            25: #DEBUG = -O
        !            26:
        !            27: CFLAGS += $(DEBUG) $(CONFIG)
        !            28: LDFLAGS = -ltermcap
        !            29:
        !            30: all: $(TARGET)
        !            31:
        !            32: $(TARGET): $(OBJ)
        !            33:        $(CC) -o $(TARGET) $(CFLAGS) $(OBJ) $(LDFLAGS)
        !            34:
        !            35: argv: fep_com.c
        !            36:        $(CC) -o argv -DMKARGDEBUG fep_util.c
        !            37:
        !            38: install: $(TARGET)
        !            39:        install -s $(TARGET) $(INSTDIR)
        !            40:        gzip -9n -c fep.1 > ${PREFIX}/man/man1/fep.1.gz
        !            41:
        !            42: fep.1: fep.jman
        !            43:        sed -e '/^\.EG/d' -e '/^\.JP/,/^\.EJ/d' -e '/^\.\\"KS/,/^\.\\"KE/d' \
        !            44:        -e '/^\.\\"K/d' fep.jman > $@
        !            45:
        !            46: README.jis: README
        !            47:        jcat -IJ README > $@
        !            48:
        !            49: fep.tar: $(DISTRIBUTION)
        !            50:        tar cvf $@ $(DISTRIBUTION)
        !            51:
        !            52: # rogue-monster version shar
        !            53: shar: fep.shr1
        !            54:
        !            55: TARGETSIZE=40000
        !            56: fep.shr1: $(DISTRIBUTION)
        !            57:        shar -f fep -m $(TARGETSIZE) $(DISTRIBUTION)
        !            58:
        !            59: # tektronix shar
        !            60: tshar: $(DISTRIBUTION)
        !            61:        shar $(DISTRIBUTION) > fep.shar
        !            62:
        !            63: clean:
        !            64:        rm -f *.o $(TARGET)
        !            65:
        !            66: distversion: $(DISTRIBUTION)
        !            67:        @ident $(DISTRIBUTION) | grep Header
        !            68:
        !            69: fep_main.o:    fep_defs.h fep_glob.h fep_funcs.h fep_stat.h
        !            70: fep_com.o:     fep_defs.h fep_glob.h fep_funcs.h
        !            71: fep_edit.o:    fep_defs.h fep_glob.h fep_funcs.h
        !            72: fep_funcs.o:   fep_funcs.h
        !            73: fep_hist.o:    fep_defs.h fep_glob.h fep_funcs.h
        !            74: fep_set.o:     fep_defs.h fep_glob.h
        !            75: fep_util.o:    fep_defs.h
        !            76: fep_vi.o:      fep_defs.h fep_glob.h fep_funcs.h

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