mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
f809e5bd30
commit
11bf345961
2 changed files with 13 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue