1#  GNU Objective C Runtime Makefile for compiling with djgpp
2#  Copyright (C) 1993, 1994, 1996 Free Software Foundation, Inc.
3#
4#  This file is part of GCC.
5#
6#  GCC 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#  GCC 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#  GCC; see the file COPYING.  If not, write to the Free Software
17#  Foundation, 51 Franklin Street, Fifth Floor,
18#  Boston, MA 02110-1301, USA. 
19
20# This Makefile is configured for GnuMAKE
21
22GCC_FOR_TARGET=gcc
23
24.SUFFIXES: .o .m
25
26OPTIMIZE = -O2
27
28# Always search these dirs when compiling.
29SUBDIR_INCLUDES = -I. -I.. -I../config
30
31.c.o:
32	$(GCC_FOR_TARGET) $(OPTIMIZE) \
33		-c $(GCC_CFLAGS) $(SUBDIR_INCLUDES) $<
34
35.m.o:
36	$(GCC_FOR_TARGET) $(OPTIMIZE) -fgnu-runtime \
37		-c $(GCC_CFLAGS) $(SUBDIR_INCLUDES) $<
38
39OBJC_O = hash.o sarray.o class.o sendmsg.o init.o archive.o \
40         selector.o objects.o misc.o object.o protocol.o encoding.o thread.o
41
42libobjc.a: $(OBJC_O)
43	-rm -f libobjc.a
44	ar rc libobjc.a $(OBJC_O)
45	ranlib libobjc.a
46
47OBJC_H = hash.h objc-list.h sarray.h objc.h \
48         objc-api.h \
49	 object.h protocol.h mutex.h \
50	 typedstream.h thread.h
51
52mostlyclean:
53	-rm -f *.o libobjc.a xforward fflags
54clean: mostlyclean
55distclean: mostlyclean
56extraclean: mostlyclean
57