head	1.1;
access;
symbols;
locks
	bsittler:1.1; strict;
comment	@# @;


1.1
date	2001.07.17.18.34.00;	author bsittler;	state Exp;
branches;
next	;


desc
@script to build directory structure lost by zip, unzip or tar
@


1.1
log
@Initial revision
@
text
@#!/bin/sh
for dir in libObj/obj obj libc/obj16 obj16 lib lib16 bin bin16
do
   test -e "$dir" ||
   mkdir "$dir"
done
@
