Annotation of OpenXM/src/asir2000/Makefile, Revision 1.1
1.1 ! maekawa 1: # $OpenXM$
! 2:
! 3: ASIR = ../../../OpenXM_contrib2/asir2000
! 4: BINDIR = ../../bin
! 5: LIBDIR = ../../lib
! 6:
! 7: all: configure
! 8: @if [ ! -f ./.make_done ]; then \
! 9: (cd $(ASIR) ; make all) \
! 10: fi
! 11: @touch ./.make_done
! 12:
! 13: install: all
! 14: (cd $(ASIR) ; make install ; make install2)
! 15:
! 16: clean:
! 17: (cd $(ASIR) ; make clean)
! 18: @rm -f ./.make_done
! 19:
! 20: distclean:
! 21: @cat BINARIES | xargs -t rm -rf
! 22:
! 23: configure:
! 24: @if [ ! -f ./.configure_done ]; then \
! 25: (cd $(ASIR) ; ./configure ; xmkmf -a ; make depend) \
! 26: fi
! 27: @touch ./.configure_done
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>