OSDN Git Service

(OBJC_VERSION): Increment version as recent changes have made old
[pf3gnuchains/gcc-fork.git] / gcc / objc / Makefile.in
1 #  GNU Objective C Runtime Makefile
2 #  Copyright (C) 1993, 1995, 1996 Free Software Foundation, Inc.
3 #
4 #  This file is part of GNU CC.
5 #
6 #  GNU CC is free software; you can redistribute it and/or modify it under the
7 #  terms of the GNU General Public License as published by the Free Software
8 #  Foundation; either version 2, or (at your option) any later version.
9 #
10 #  GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
11 #  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 #  FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13 #  details.
14 #
15 #  You should have received a copy of the GNU General Public License along with
16 #  GNU CC; see the file COPYING.  If not, write to the Free Software
17 #  Foundation, 59 Temple Place - Suite 330,
18 #  Boston, MA 02111-1307, USA.
19
20 #  This makefile is run by the parent dir's makefile.
21 #  thisdir1=`pwd`; \
22 #  srcdir1=`cd $(srcdir); pwd`; \
23 #  cd objc; \
24 #  $(MAKE) $(MAKEFLAGS) -f $$srcdir1/objc/Makefile libobjc.a \
25 #    srcdir=$$srcdir1 tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
26 #    GCC_FOR_TARGET="$$thisdir1/xgcc -B$$thisdir1/" \
27 #    GCC_CFLAGS="$(GCC_CFLAGS)" incinstalldir=$$thisdir1/include
28 #    OBJC_THREAD_FILE="$(OBJC_THREAD_FILE)"
29 #  Two targets are used by ../Makefile: `all' and `mostlyclean'.
30
31 SHELL=/bin/sh
32
33 .SUFFIXES: .m
34
35 OPTIMIZE= -O
36
37 VPATH = $(srcdir)/objc
38
39 AR = ar
40 AR_FLAGS = rc
41
42 # Always search these dirs when compiling.
43 SUBDIR_INCLUDES = -I. -I.. -I$(srcdir) -I$(srcdir)/config
44
45 .c.o:
46         $(GCC_FOR_TARGET) $(OPTIMIZE) \
47                 -c $(GCC_CFLAGS) $(SUBDIR_INCLUDES) $<
48
49 .m.o:
50         $(GCC_FOR_TARGET) $(OPTIMIZE) -fgnu-runtime \
51                 -c $(GCC_CFLAGS) $(SUBDIR_INCLUDES) $<
52
53 # If we were not invoked from the parent dir,
54 # invoke make in the parent dir and have reinvoke this makefile.
55 # That's necessary to get the right values for srcdir, etc.
56 all:
57         cd ..; $(MAKE) sublibobjc.a
58
59 OBJC_O = hash.o sarray.o class.o sendmsg.o init.o archive.o encoding.o \
60          selector.o objects.o misc.o NXConstStr.o Object.o Protocol.o \
61          nil_method.o thr.o $(OBJC_THREAD_FILE).o
62
63 libobjc.a: $(OBJC_O)
64         $(AR) rc libobjc.a $?
65 # ranlib is run in the parent directory's makefile.
66
67 OBJC_H = hash.h objc-list.h sarray.h objc.h \
68          objc-api.h \
69          NXConstStr.h Object.h Protocol.h encoding.h typedstream.h thr.h
70
71 # copy objc headers to installation include directory
72 copy-headers: 
73         -rm -fr $(incinstalldir)/objc
74         -mkdir $(incinstalldir)/objc
75         for file in $(OBJC_H); do \
76           realfile=$(srcdir)/objc/$${file}; \
77           cp $${realfile} $(incinstalldir)/objc; \
78           chmod a+r $(incinstalldir)/objc/$${file}; \
79         done
80
81 mostlyclean:
82         -rm -f *.o libobjc.a xforward fflags
83 clean: mostlyclean
84 distclean: mostlyclean
85 extraclean: mostlyclean
86
87 # For Sun VPATH.
88
89 hash.o: hash.c
90 sarray.o: sarray.c
91 class.o: class.c
92 sendmsg.o: sendmsg.c
93 init.o: init.c
94 archive.o: archive.c
95 encoding.o: encoding.c
96 selector.o: selector.c
97 objects.o: objects.c
98 misc.o: misc.c
99 NXConstStr.o: NXConstStr.m
100 Object.o: Object.m
101 Protocol.o: Protocol.m
102 thr.o: thr.h thr.c
103 $(OBJC_THREAD_FILE).o: $(OBJC_THREAD_FILE).c
104 nil_method.o: nil_method.c