Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
305f8c5b
Commit
305f8c5b
authored
Apr 12, 1993
by
Kresten Krab Thorup
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated for new runtime
From-SVN: r4088
parent
96b11bed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
52 deletions
+47
-52
gcc/objc/Makefile.in
+47
-52
No files found.
gcc/objc/Makefile.in
View file @
305f8c5b
# GNU Objective C Runtime Makefile
# Copyright (C) 1993 Free Software Foundation, Inc.
#
# Author: Kresten Krab Thorup
#
# This file is part of GNU CC.
#
# GNU CC is free software; you can redistribute it and/or modify it under the
...
...
@@ -16,20 +14,22 @@
#
# You should have received a copy of the GNU General Public License along with
# GNU CC; see the file COPYING. If not, write to the Free Software
# Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
#
# This makefile is run by the parent dir's makefile.
# thisdir1=`pwd`; \
# srcdir1=`cd $(srcdir); pwd`; \
# cd objc; \
# $(MAKE) $(MAKEFLAGS) -f $$srcdir1/objc/Makefile libobjc.a \
# srcdir=$$srcdir1 tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
# GCC_FOR_TARGET="$$thisdir1/xgcc -B$$thisdir1/" \
#
GCC_CFLAGS="$(GCC_CFLAGS)"
# Two targets are used by ../Makefile: `all' and `mostlyclean'.
# Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#
This makefile is run by the parent dir's makefile.
#
thisdir1=`pwd`; \
#
srcdir1=`cd $(srcdir); pwd`; \
#
cd objc; \
#
$(MAKE) $(MAKEFLAGS) -f $$srcdir1/objc/Makefile libobjc.a \
#
srcdir=$$srcdir1 tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
#
GCC_FOR_TARGET="$$thisdir1/xgcc -B$$thisdir1/" \
#
GCC_CFLAGS="$(GCC_CFLAGS)" incinstalldir=$$thisdir1/include
#
Two targets are used by ../Makefile: `all' and `mostlyclean'.
.SUFFIXES
:
.m
OPTIMIZE
=
-O
VPATH
=
$(srcdir)
/objc
AR
=
ar
...
...
@@ -39,10 +39,11 @@ AR_FLAGS = rc
SUBDIR_INCLUDES
=
-I
.
-I
..
-I
$(srcdir)
-I
$(srcdir)
/config
.c.o
:
$(GCC_FOR_TARGET)
-c
$(GCC_CFLAGS)
$(SUBDIR_INCLUDES)
$<
$(GCC_FOR_TARGET)
$(OPTIMIZE)
-c
$(GCC_CFLAGS)
$(SUBDIR_INCLUDES)
$<
.m.o
:
$(GCC_FOR_TARGET)
-c
$(GCC_CFLAGS)
$(SUBDIR_INCLUDES)
$<
$(GCC_FOR_TARGET)
$(OPTIMIZE)
-fgnu-runtime
\
-c
$(GCC_CFLAGS)
$(SUBDIR_INCLUDES)
$<
# If we were not invoked from the parent dir,
# invoke make in the parent dir and have reinvoke this makefile.
...
...
@@ -50,48 +51,42 @@ SUBDIR_INCLUDES = -I. -I.. -I$(srcdir) -I$(srcdir)/config
all
:
cd
..
;
$(MAKE)
sublibobjc.a
OBJS
=
hash.o sarray.o objc-class.o objc-msg.o objc-init.o objc-archive.o
\
objc-sel.o objc-object.o objc-misc.o Object.o Protocol.o
all
:
libobjc.a
runtime.h
:
hash.h list.h sarray.h objc.h objc-api.h
Object.m
:
Object.h
Object.h
:
objc.h objc-api.h
sarray.c
:
sarray.h
hash.c
:
hash.h
objc-class.c
:
runtime.h
OBJC_O
=
hash.o sarray.o objc-class.o objc-msg.o objc-init.o objc-archive.o
\
objc-sel.o objc-object.o objc-misc.o Object.o Protocol.o
objc-msg.c
:
runtime.h
objc-init.c
:
runtime.h
objc-sel.c
:
runtime.h
objc-object.c
:
runtime.h
objc-class.o
:
objc-class.c
objc-msg.o
:
objc-msg.c
objc-init.o
:
objc-init.c
objc-sel.o
:
objc-sel.c
objc-object.o
:
objc-object.c
libobjc.a
:
$(OBJS)
libobjc.a
:
$(OBJC_O)
-
rm
-f
libobjc.a
$(AR)
rc libobjc.a
$(OBJ
S
)
$(AR)
rc libobjc.a
$(OBJ
C_O
)
# ranlib is run in the parent directory's makefile.
OBJC_H
=
hash.h list.h sarray.h objc.h
\
objc-api.h objc-archive.h cache.h
\
Object.h Protocol.h mutex.h
# copy objc headers to installation include directory
copy-headers
:
$(OBJC_H)
-
rm
-fr
$(incinstalldir)
/objc
mkdir
$(incinstalldir)
/objc
for
file
in
$(OBJC_H)
;
do
\
realfile
=
$(srcdir)
/objc/
$$
file
;
\
cp
$$
realfile
$(incinstalldir)
/objc
;
\
chmod a+r
$(incinstalldir)
/objc
;
\
done
objc-msg.o
:
objc-msg.c fflags
$(GCC_FOR_TARGET)
`
cat
fflags
`
-c
$(GCC_CFLAGS)
$(SUBDIR_INCLUDES)
$<
## Next to are for heuristics on forwarding mechanism...
_forward
:
_forward.c
$(GCC_FOR_TARGET)
-c
$(GCC_CFLAGS)
$(SUBDIR_INCLUDES)
$<
$(GCC_FOR_TARGET)
./_forward.o
-o
_forward
fflags
:
_forward
-
rm
-f
fflags
-
./_forward
>
fflags
mostlyclean
:
-
rm
-f
$(OBJS)
libobjc.a
-
rm
-f
*
.o libobjc.a _forward fflags
clean
:
mostlyclean
distclean
:
mostlyclean
extraclean
:
mostlyclean
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment