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

Diff for /OpenXM/bin/Attic/Makefile between version 1.6 and 1.10

version 1.6, 2000/01/19 09:43:53 version 1.10, 2000/03/10 08:11:17
Line 1 
Line 1 
 # $OpenXM: OpenXM/bin/Makefile,v 1.5 2000/01/19 07:28:37 noro Exp $  # $OpenXM: OpenXM/bin/Makefile,v 1.9 2000/03/10 08:03:27 takayama Exp $
   
 LIBDIR=../lib  LIBDIR=../lib
 FEPLINUX=fep.linux  FEPLINUX=fep.linux
Line 6  FEPFBSD=fep.fbsd
Line 6  FEPFBSD=fep.fbsd
 PHC=lin_phcv2p  PHC=lin_phcv2p
 RM=rm  RM=rm
   
 configure: $(FEPLINUX) $(FEPFBSD) $(PHC)  configure:
           @if [ -f .configure_done ] ; then \
                   echo "OpenXM/bin is already configured." ; \
           else \
                   make configure-real ; \
           fi
   
   clean-for-install:
           $(RM) -f *uuencoded*
   
   configure-real: $(FEPLINUX) $(FEPFBSD) $(PHC)
         @if [ "`uname`" = "Linux" ]; then \          @if [ "`uname`" = "Linux" ]; then \
                 rm -f fep phc ; \                  rm -f fep phc ; \
                 ln -f -s $(FEPLINUX) fep ; \                  ln -f -s $(FEPLINUX) fep ; \
                 ln -f -s $(PHC) phc ; \                  ln -f -s $(PHC) phc ; \
               echo "Linux binary generation: fep, phc" ; \
         else \          else \
                 echo "We have the binary of phc only for linux." ; \                  echo "Not Linux" ; \
         fi          fi
           -@if [ "`uname`" = "FreeBSD" ]; then \
                   rm -f fep phc ; \
                   ln -f -s $(FEPFBSD) fep ; \
                   ln -f -s $(PHC) phc ; \
                   brandelf -t Linux ./phc ; \
                   echo "FreeBSD binary generation: fep and phc. Linux Emulation is requied to execute phc." ; \
           else \
                echo "Not FreeBSD" ; \
           fi
   
         rm -f asir          rm -f ox_asir
         ln -f -s $(LIBDIR)/asir/ox_asir asir          ln -f -s ./asir ox_asir
           @touch .configure_done
   
 $(FEPLINUX) : $(FEPLINUX).gz.uuencoded  $(FEPLINUX) : $(FEPLINUX).gz.uuencoded
         @if [ -f $(FEPLINUX).gz.uuencoded ]; then \          @if [ -f $(FEPLINUX).gz.uuencoded ]; then \
Line 40  $(PHC) : $(PHC).gz.uuencoded
Line 61  $(PHC) : $(PHC).gz.uuencoded
         fi          fi
   
 distclean:  distclean:
         rm -f asir fep fep.linux lin_phcv2p phc          rm -f asir ox_asir fep fep.linux fep.fbsd lin_phcv2p phc .configure_done
   
 uuencode:  uuencode:
         @if [ -f $(FEPLINUX) ]; then \          @if [ -f $(FEPLINUX) ]; then \
                 echo '$OpenXM: OpenXM/bin/Makefile,v 1.5 2000/01/19 07:28:37 noro Exp $' > $(FEPLINUX).gz.uuencoded ; \                  echo '$OpenXM: OpenXM/bin/Makefile,v 1.9 2000/03/10 08:03:27 takayama Exp $' > $(FEPLINUX).gz.uuencoded ; \
                 gzip -c $(FEPLINUX) | uuencode $(FEPLINUX).gz >> $(FEPLINUX).gz.uuencoded ; \                  gzip -c $(FEPLINUX) | uuencode $(FEPLINUX).gz >> $(FEPLINUX).gz.uuencoded ; \
         fi          fi
         @if [ -f $(FEPFBSD) ]; then \          @if [ -f $(FEPFBSD) ]; then \
                 echo '$OpenXM: OpenXM/bin/Makefile,v 1.5 2000/01/19 07:28:37 noro Exp $' > $(FEPFBSD).gz.uuencoded ; \                  echo '$OpenXM: OpenXM/bin/Makefile,v 1.9 2000/03/10 08:03:27 takayama Exp $' > $(FEPFBSD).gz.uuencoded ; \
                 gzip -c $(FEPFBSD) | uuencode $(FEPFBSD).gz >> $(FEPFBSD).gz.uuencoded ; \                  gzip -c $(FEPFBSD) | uuencode $(FEPFBSD).gz >> $(FEPFBSD).gz.uuencoded ; \
         fi          fi
         @if [ -f $(PHC) ]; then \          @if [ -f $(PHC) ]; then \
                 echo '$OpenXM: OpenXM/bin/Makefile,v 1.5 2000/01/19 07:28:37 noro Exp $' > $(PHC).gz.uuencoded ; \                  echo '$OpenXM: OpenXM/bin/Makefile,v 1.9 2000/03/10 08:03:27 takayama Exp $' > $(PHC).gz.uuencoded ; \
                 gzip -c $(PHC) | uuencode $(PHC).gz >> $(PHC).gz.uuencoded ; \                  gzip -c $(PHC) | uuencode $(PHC).gz >> $(PHC).gz.uuencoded ; \
         fi          fi

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.10

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