home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD2.bin
/
bbs
/
gnu
/
gnu-misc-src.lha
/
GNU
/
src
/
baseline
/
AmigaLib.mk
next >
Wrap
Makefile
|
1995-01-26
|
492b
|
27 lines
# Amiga Library Services - CD Administration Makefile
#
# This Makefile goes in the source directory of the GNU tree.
SHELL = /bin/sh
BBSROOT = /BBS
BBSDIR = $(BBSROOT)/GNU
all:
# Copy source archives to the BBS section of the CD. There must
# be an associated product info file or the copy is not done.
BBS: bbsdir
$(SHELL) BBS-Copy.sh $(BBSDIR)
bbsdir:
if test -d $(BBSDIR); then true; else mkdir -p $(BBSDIR); fi
# Clean up this directory.
clean:
rm -f *!
clobber: clean