mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-24 21:58:51 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@1585 72102866-910b-0410-8b05-ffd578937521
36 lines
524 B
Batchfile
36 lines
524 B
Batchfile
@echo off
|
|
rem
|
|
rem Configure.bat
|
|
rem
|
|
rem Configuration program for GNUstep GUI Library
|
|
rem
|
|
rem 2/27/95 Initially created
|
|
rem
|
|
|
|
rem
|
|
rem Top level makefile
|
|
rem
|
|
echo "Top level makefile"
|
|
sed -f Makefile.sed.nt Makefile.in >Makefile
|
|
|
|
rem
|
|
rem Source makefile
|
|
rem
|
|
cd Source
|
|
echo "Source makefile"
|
|
sed -f Makefile.sed.nt Makefile.in >Makefile
|
|
cd ..
|
|
|
|
rem
|
|
rem Configuration files
|
|
rem
|
|
echo "Creating header configuration files"
|
|
cd Headers
|
|
cd gnustep
|
|
cd gui
|
|
rm -f config.h
|
|
sed -f config.sed.nt config.h.in >>config.h
|
|
cd ..
|
|
cd ..
|
|
cd ..
|
|
|