diff options
author | Nicola Pero <nicola.pero@meta-innovation.com> | 2010-09-11 12:38:56 +0000 |
---|---|---|
committer | Nicola Pero <nicola@gcc.gnu.org> | 2010-09-11 12:38:56 +0000 |
commit | 3d0d87390b1aad25556c927130ef0ec6890439e8 (patch) | |
tree | 34a7ed63e36b5323657af9af9dc423fa5a37dd3e /libobjc/Makefile.in | |
parent | f9132eb797d897b8e66b8e8ddb3e8e2744b6ac51 (diff) | |
download | gcc-3d0d87390b1aad25556c927130ef0ec6890439e8.zip gcc-3d0d87390b1aad25556c927130ef0ec6890439e8.tar.gz gcc-3d0d87390b1aad25556c927130ef0ec6890439e8.tar.bz2 |
In libobjc:
* objc/deprecated/struct_objc_selector.h: New file. Definition of
'struct objc_selector' and 'sel_eq' moved here.
* objc/deprecated/struct_objc_protocol.h: New file. Definition of
'struct objc_procotol' moved here.
* objc/deprecated/struct_objc_class.h: New file. Definition of
'struct objc_class' moved here.
* objc/deprecated/MetaClass.h: New file. Definition of MetClass
moved here.
* objc/deprecated/STR.h: New file. Definition of STR moved here.
* objc/message.h: New file. Definitions for relval_t, apply_t,
arglist, arglist_t and objc_msg_lookup were moved here.
* objc/objc.h: Include the above files instead of defining the
corresponding structs, types and functions here. Added new opaque
definitions for SEL and Class. Use Class and not 'struct
objc_class *' in the definition of 'struct objc_object'.
Commented all types defined in the file. Removed special
definition of BOOL as 'int' on __vxworks; use 'unsigned char'
there as well.
* objc/deprecated/objc-unexpected-exception.h: Renamed to
objc_unexpected_exception.h.
* objc/objc-api.h: Updated include of
objc-unexpetected-exception.h
* objc/objc-exception.h: Updated comments.
* Makefile.in (OBJC_H, OBJC_DEPRECATED_H): Added the new header
files. Reindented list of files.
From-SVN: r164212
Diffstat (limited to 'libobjc/Makefile.in')
-rw-r--r-- | libobjc/Makefile.in | 30 |
1 files changed, 25 insertions, 5 deletions
diff --git a/libobjc/Makefile.in b/libobjc/Makefile.in index a47f7ea..1dfced3 100644 --- a/libobjc/Makefile.in +++ b/libobjc/Makefile.in @@ -143,15 +143,35 @@ all: libobjc$(libsuffix).la $(OBJC_BOEHM_GC) # User-visible header files, from the objc/ directory -OBJC_H = hash.h objc-list.h sarray.h objc.h objc-api.h objc-exception.h \ - NXConstStr.h Object.h Protocol.h encoding.h typedstream.h \ - thr.h objc-decls.h +OBJC_H = \ + objc.h \ + objc-exception.h \ + \ + message.h \ + hash.h \ + objc-list.h \ + sarray.h \ + objc-api.h \ + NXConstStr.h \ + Object.h \ + Protocol.h \ + encoding.h \ + typedstream.h \ + thr.h \ + objc-decls.h # User-visible header files containing deprecated APIs, from the # objc/deprecated directory -OBJC_DEPRECATED_H = Object.h objc-unexpected-exception.h \ - typedstream.h +OBJC_DEPRECATED_H = \ + MetaClass.h \ + Object.h \ + STR.h \ + objc_unexpected_exception.h \ + struct_objc_class.h \ + struct_objc_protocol.h \ + struct_objc_selector.h \ + typedstream.h # Modules that comprise the runtime library. |