#!/bin/sh if test x"$1" = z; then CC1OBJ=gcc else CC1OBJ=$1 fi if test "$GNUSTEP_HOST_OS" = mingw32; then CC1OBJ=`$GNUSTEP_MAKEFILES/fixpath.sh -u $CC1OBJ` fi rm -f tmp-runtime echo "" > tmp-runtime echo "/* This file is automatically generated */" > runtime-info.h $CC1OBJ -print-objc-runtime-info tmp-runtime >> runtime-info.h rm -f tmp-runtime