[BACK]Return to Makefile.in CVS log [TXT][DIR] Up to [local] / OpenXM / src / asir-contrib

File: [local] / OpenXM / src / asir-contrib / Makefile.in (download)

Revision 1.1, Fri Jul 2 07:48:47 2004 UTC (19 years, 10 months ago) by takayama
Branch: MAIN
CVS Tags: RELEASE_1_2_3

Asir-contrib starts to use "configure".

Please clean OpenXM and checkout it before make;
otherwise a make error will happen.

# $OpenXM: OpenXM/src/asir-contrib/Makefile.in,v 1.1 2004/07/02 07:48:47 takayama Exp $

# targets:
# all
# install
# install-document
# clean

all :  Makefile
	(cd packages/doc ; make all)

install : Makefile
	(cd packages/src ; make install)
	-(cd packages/doc ; make install)

install-document: Makefile
	-(cd packages/doc ; make install-document)

clean :
	-rm -rf .*done packages/src/.*done packages/doc/.*done config.log config.status autom4te.cache
	-(cd packages/src ; make clean)
	-(cd packages/doc ; make clean)

configure: Makefile
	if test ! -f ./.configure_sub_done  ; \
	then \
	(cd packages/src; sh ./configure --prefix=@prefix@) ; \
	(cd packages/doc; sh ./configure --prefix=@prefix@) ; \
	fi
	@touch ./.configure_sub_done

Makefile: Makefile.in
	(rm -f .*done ; ./make-configure )