=================================================================== RCS file: /home/cvs/OpenXM/bin/Attic/Makefile,v retrieving revision 1.9 retrieving revision 1.11 diff -u -p -r1.9 -r1.11 --- OpenXM/bin/Attic/Makefile 2000/03/10 08:03:27 1.9 +++ OpenXM/bin/Attic/Makefile 2000/09/04 03:17:22 1.11 @@ -1,4 +1,4 @@ -# $OpenXM: OpenXM/bin/Makefile,v 1.8 2000/01/21 09:51:08 noro Exp $ +# $OpenXM: OpenXM/bin/Makefile,v 1.10 2000/03/10 08:11:17 takayama Exp $ LIBDIR=../lib FEPLINUX=fep.linux @@ -11,14 +11,17 @@ configure: echo "OpenXM/bin is already configured." ; \ else \ make configure-real ; \ - $(RM) -f *uuencoded* ; \ fi +clean-for-install: + $(RM) -f *uuencoded* + configure-real: $(FEPLINUX) $(FEPFBSD) $(PHC) @if [ "`uname`" = "Linux" ]; then \ rm -f fep phc ; \ ln -f -s $(FEPLINUX) fep ; \ ln -f -s $(PHC) phc ; \ + rm -f $(FEPFBSD) ; \ echo "Linux binary generation: fep, phc" ; \ else \ echo "Not Linux" ; \ @@ -27,6 +30,7 @@ configure-real: $(FEPLINUX) $(FEPFBSD) $(PHC) rm -f fep phc ; \ ln -f -s $(FEPFBSD) fep ; \ ln -f -s $(PHC) phc ; \ + rm -f $(FEPLINUX) ; \ brandelf -t Linux ./phc ; \ echo "FreeBSD binary generation: fep and phc. Linux Emulation is requied to execute phc." ; \ else \ @@ -63,14 +67,14 @@ distclean: uuencode: @if [ -f $(FEPLINUX) ]; then \ - echo '$OpenXM: OpenXM/bin/Makefile,v 1.8 2000/01/21 09:51:08 noro Exp $' > $(FEPLINUX).gz.uuencoded ; \ + echo '$OpenXM: OpenXM/bin/Makefile,v 1.10 2000/03/10 08:11:17 takayama Exp $' > $(FEPLINUX).gz.uuencoded ; \ gzip -c $(FEPLINUX) | uuencode $(FEPLINUX).gz >> $(FEPLINUX).gz.uuencoded ; \ fi @if [ -f $(FEPFBSD) ]; then \ - echo '$OpenXM: OpenXM/bin/Makefile,v 1.8 2000/01/21 09:51:08 noro Exp $' > $(FEPFBSD).gz.uuencoded ; \ + echo '$OpenXM: OpenXM/bin/Makefile,v 1.10 2000/03/10 08:11:17 takayama Exp $' > $(FEPFBSD).gz.uuencoded ; \ gzip -c $(FEPFBSD) | uuencode $(FEPFBSD).gz >> $(FEPFBSD).gz.uuencoded ; \ fi @if [ -f $(PHC) ]; then \ - echo '$OpenXM: OpenXM/bin/Makefile,v 1.8 2000/01/21 09:51:08 noro Exp $' > $(PHC).gz.uuencoded ; \ + echo '$OpenXM: OpenXM/bin/Makefile,v 1.10 2000/03/10 08:11:17 takayama Exp $' > $(PHC).gz.uuencoded ; \ gzip -c $(PHC) | uuencode $(PHC).gz >> $(PHC).gz.uuencoded ; \ fi