mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-24 20:31:44 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/branches/gnustep_testplant_branch@39739 72102866-910b-0410-8b05-ffd578937521
12 lines
359 B
Text
12 lines
359 B
Text
|
|
#
|
|
# Make list of class names for DLL exports. Uses the actual classes from
|
|
# the .o files, so it should really have everything needed.
|
|
#
|
|
libNSUserNotifications.def: $(OBJ_FILES_TO_LINK)
|
|
rm -f $@
|
|
rm -f _tmp.def
|
|
cat win32-def.top > $@
|
|
nm $^ | grep '^........ [TR] _' | sed 's/[^_]*_//' > _tmp.def
|
|
cat _tmp.def | grep "_class_name_" >> $@
|
|
rm -rf _tmp.def
|