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

Diff for /OpenXM/bin/Attic/Makefile between version 1.4 and 1.5

version 1.4, 2000/01/09 21:04:04 version 1.5, 2000/01/19 07:28:37
Line 1 
Line 1 
 # $OpenXM: OpenXM/bin/Makefile,v 1.3 2000/01/09 20:27:28 maekawa Exp $  # $OpenXM: OpenXM/bin/Makefile,v 1.4 2000/01/09 21:04:04 maekawa Exp $
   
 LIBDIR=../lib  LIBDIR=../lib
 FEP=fep.linux  FEPLINUX=fep.linux
   FEPFBSD=fep.fbsd
 PHC=lin_phcv2p  PHC=lin_phcv2p
   
 configure:  configure:
         @if [ -f $(FEP).gz.uuencoded ]; then \          @if [ -f $(FEPLINUX).gz.uuencoded ]; then \
                 uudecode -p $(FEP).gz.uuencoded | gzip -dc > $(FEP) ; \                  uudecode $(FEPLINUX).gz.uuencoded ; \
                 chmod +x $(FEP) ; \                  gzip -d $(FEPLINUX).gz ; \
                   chmod +x $(FEPLINUX) ; \
         fi          fi
   
           @if [ -f $(FEPFBSD).gz.uuencoded ]; then \
                   uudecode $(FEPFBSD).gz.uuencoded ; \
                   gzip -d $(FEPFBSD).gz ; \
                   chmod +x $(FEPFBSD) ; \
           fi
   
         @if [ -f $(PHC).gz.uuencoded ]; then \          @if [ -f $(PHC).gz.uuencoded ]; then \
                 uudecode -p $(PHC).gz.uuencoded | gzip -dc > $(PHC) ; \                  uudecode $(PHC).gz.uuencoded ; \
                   gzip -d $(PHC).gz ; \
                 chmod +x $(PHC) ; \                  chmod +x $(PHC) ; \
         fi          fi
   
         @if [ "`uname`" = "Linux" ]; then \          @if [ "`uname`" = "Linux" ]; then \
                 rm -f fep phc ; \                  rm -f fep phc ; \
                 ln -f -s $(FEP) fep ; \                  ln -f -s $(FEPLINUX) fep ; \
                 ln -f -s $(PHC) phc ; \                  ln -f -s $(PHC) phc ; \
         else \          else \
                 echo "We have the binary of phc only for linux." ; \                  echo "We have the binary of phc only for linux." ; \
Line 30  distclean:
Line 39  distclean:
         rm -f asir fep fep.linux lin_phcv2p phc          rm -f asir fep fep.linux lin_phcv2p phc
   
 uuencode:  uuencode:
         @if [ -f $(FEP) ]; then \          @if [ -f $(FEPLINUX) ]; then \
                 echo '$OpenXM$' > $(FEP).gz.uuencoded ; \                  echo '$OpenXM: OpenXM/bin/Makefile,v 1.4 2000/01/09 21:04:04 maekawa Exp $' > $(FEPLINUX).gz.uuencoded ; \
                 gzip -c $(FEP) | uuencode $(FEP).gz >> $(FEP).gz.uuencoded ; \                  gzip -c $(FEPLINUX) | uuencode $(FEPLINUX).gz >> $(FEPLINUX).gz.uuencoded ; \
         fi          fi
           @if [ -f $(FEPFBSD) ]; then \
                   echo '$OpenXM: OpenXM/bin/Makefile,v 1.4 2000/01/09 21:04:04 maekawa Exp $' > $(FEPFBSD).gz.uuencoded ; \
                   gzip -c $(FEPFBSD) | uuencode $(FEPFBSD).gz >> $(FEPFBSD).gz.uuencoded ; \
           fi
         @if [ -f $(PHC) ]; then \          @if [ -f $(PHC) ]; then \
                 echo '$OpenXM$' > $(PHC).gz.uuencoded ; \                  echo '$OpenXM: OpenXM/bin/Makefile,v 1.4 2000/01/09 21:04:04 maekawa 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.4  
changed lines
  Added in v.1.5

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