home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / baseline / amigalib.mk next >
Makefile  |  1995-01-26  |  492b  |  27 lines

  1. # Amiga Library Services - CD Administration Makefile
  2. #
  3. # This Makefile goes in the source directory of the GNU tree.
  4.  
  5. SHELL =        /bin/sh
  6. BBSROOT =    /BBS
  7. BBSDIR =    $(BBSROOT)/GNU
  8.  
  9. all:
  10.  
  11. # Copy source archives to the BBS section of the CD.  There must
  12. # be an associated product info file or the copy is not done.
  13.  
  14. BBS:        bbsdir
  15.         $(SHELL) BBS-Copy.sh $(BBSDIR)
  16.  
  17. bbsdir:
  18.         if test -d $(BBSDIR); then true; else mkdir -p $(BBSDIR); fi
  19.  
  20. # Clean up this directory.
  21.  
  22. clean:
  23.         rm -f *!
  24.  
  25. clobber:    clean
  26.  
  27.