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

Annotation of OpenXM/src/asir2000/Makefile, Revision 1.3

1.3     ! maekawa     1: # $OpenXM: OpenXM/src/asir2000/Makefile,v 1.2 2000/01/09 15:57:25 maekawa Exp $
1.1       maekawa     2:
                      3: ASIR = ../../../OpenXM_contrib2/asir2000
                      4:
                      5: all: configure
                      6:        @if [ ! -f ./.make_done ]; then \
                      7:                (cd $(ASIR) ; make all) \
                      8:        fi
                      9:        @touch ./.make_done
                     10:
                     11: install: all
                     12:        (cd $(ASIR) ; make install ; make install2)
                     13:
                     14: clean:
                     15:        (cd $(ASIR) ; make clean)
1.2       maekawa    16:        @rm -f ./.make_done ./.configure_done
1.1       maekawa    17:
                     18: distclean:
                     19:        @cat BINARIES | xargs -t rm -rf
                     20:
                     21: configure:
                     22:        @if [ ! -f ./.configure_done ]; then \
                     23:                (cd $(ASIR) ; ./configure ; xmkmf -a ; make depend) \
                     24:        fi
                     25:        @touch ./.configure_done

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