Manual rebuild

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@8353 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2000-12-18 17:24:57 +00:00
parent f809e5bd30
commit 11bf345961
2 changed files with 13 additions and 5 deletions

View file

@ -1,3 +1,8 @@
2000-12-18 Adam Fedor <fedor@gnu.org>
* Source/Makefile.postamble (libgnustep.def): Rebuild manually
rather than automatically.
2000-12-04 Richard Frith-Macdonald <rfm@gnu.org>
* Source/Unicode.m: Tidied to conform to coding standards and changed

View file

@ -263,14 +263,17 @@ $(GNUSTEP_OBJ_DIR)/NSGeometry.o \
#
# Make list of class names for DLL exports. Edit to suit
# Make list of class names for DLL exports. I'm not sure how to make this
# work with the correct dependencies, so for now it should be regenerated
# by hand when new classes get added. Then mv libgnustep-base.def.new to
# libgnustep-base.def
#
libgnustep-base.def: $(GNUSTEP_OBJ_DIR)/*o
rm -f libgnustep-base.def
libgnustep-base.def.new: $(GNUSTEP_OBJ_DIR)/*o
rm -f $@
rm -f _tmp.def
cat win32-def.top > libgnustep-base.def
cat win32-def.top > $@
nm $^ | grep '^........ [T] _' | sed 's/[^_]*_//' > _tmp.def
cat _tmp.def | grep "_class_name_" >> libgnustep-base.def
cat _tmp.def | grep "_class_name_" >> $@
rm -rf _tmp.def