libs-base/configure.bat

68 lines
1.6 KiB
Batchfile
Raw Normal View History

@echo off
rem
rem configure.bat
rem Configuration program for libobjects for Window NT
rem
rem Copyright (C) 1996 Free Software Foundation, Inc.
rem
rem Written by: Scott Christley <scottc@net-community.com>
rem
rem This file is part of the GNU Objective-C Class library.
rem
rem This library is free software; you can redistribute it and/or
rem modify it under the terms of the GNU Library General Public
rem License as published by the Free Software Foundation; either
rem version 2 of the License, or (at your option) any later version.
rem
rem This library is distributed in the hope that it will be useful,
rem but WITHOUT ANY WARRANTY; without even the implied warranty of
rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
rem Library General Public License for more details.
rem
rem You should have received a copy of the GNU Library General Public
rem License along with this library; if not, write to the Free
rem Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
rem
rem
rem Top level makefile
rem
echo "Top level makefile"
sed -f Makefile.sed.nt Makefile.in >Makefile
rem
rem src makefile
rem
echo "Src makefile"
cd src
sed -f Makefile.sed.nt Makefile.in >Makefile
touch 0
touch 1
touch 2
touch 3
touch 4
touch 5
touch 6
touch 7
touch 8
touch 9
touch 10
touch 11
touch 12
echo "objects subdirectory"
cd objects
rm -f config.h
sed -f config-nt.sed config.h.in >>config.h
cat config-nt.h >>config.h
cd ..
cd ..
rem
rem checks makefile
rem
echo "Checks makefile"
cd checks
sed -f Makefile.sed.nt Makefile.in >Makefile
cd ..