Annotation of OpenXM/src/asir2000/Makefile, Revision 1.2
1.2 ! maekawa 1: # $OpenXM: OpenXM/src/asir2000/Makefile,v 1.1 2000/01/08 19:11:10 maekawa Exp $
1.1 maekawa 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)
1.2 ! maekawa 18: @rm -f ./.make_done ./.configure_done
1.1 maekawa 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>