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

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

version 1.1, 2000/01/09 20:19:39 version 1.5, 2000/01/19 07:28:37
Line 1 
Line 1 
 # $OpenXM$  # $OpenXM: OpenXM/bin/Makefile,v 1.4 2000/01/09 21:04:04 maekawa Exp $
   
 LIBDIR=../lib  LIBDIR=../lib
   FEPLINUX=fep.linux
   FEPFBSD=fep.fbsd
   PHC=lin_phcv2p
   
 configure:  configure:
         @if [ -f lin_phcv2p.gz.uuencoded ]; then \          @if [ -f $(FEPLINUX).gz.uuencoded ]; then \
                 uudecode lin_phcv2p.gz.uuencoded | gzip -d ; \                  uudecode $(FEPLINUX).gz.uuencoded ; \
                 chmod +x lin_phcv2p ; \                  gzip -d $(FEPLINUX).gz ; \
                   chmod +x $(FEPLINUX) ; \
         fi          fi
   
         @if [ -f fep.linux.gz.uuencoded ]; then \          @if [ -f $(FEPFBSD).gz.uuencoded ]; then \
                 uudecode fep.linux.gz.uuencoded | gzip -d ; \                  uudecode $(FEPFBSD).gz.uuencoded ; \
                 chmod +x fep.linux ; \                  gzip -d $(FEPFBSD).gz ; \
                   chmod +x $(FEPFBSD) ; \
         fi          fi
   
           @if [ -f $(PHC).gz.uuencoded ]; then \
                   uudecode $(PHC).gz.uuencoded ; \
                   gzip -d $(PHC).gz ; \
                   chmod +x $(PHC) ; \
           fi
   
         @if [ "`uname`" = "Linux" ]; then \          @if [ "`uname`" = "Linux" ]; then \
                 rm -f fep phc ; \                  rm -f fep phc ; \
                 ln -f -s fep.linux fep ; \                  ln -f -s $(FEPLINUX) fep ; \
                 ln -f -s lin_phcv2p 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." ; \
         fi          fi
Line 26  configure:
Line 37  configure:
   
 distclean:  distclean:
         rm -f asir fep fep.linux lin_phcv2p phc          rm -f asir fep fep.linux lin_phcv2p phc
   
   uuencode:
           @if [ -f $(FEPLINUX) ]; then \
                   echo '$OpenXM: OpenXM/bin/Makefile,v 1.4 2000/01/09 21:04:04 maekawa 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.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 \
                   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 ; \
           fi

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.5

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