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
3e676e99
Commit
3e676e99
authored
Apr 10, 1993
by
Tom Wood
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial revision
From-SVN: r4075
parent
fe67cf58
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
0 deletions
+50
-0
gcc/objc/Makefile.in
+50
-0
No files found.
gcc/objc/Makefile.in
0 → 100644
View file @
3e676e99
# 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'.
.SUFFIXES
:
.m
VPATH
=
$(srcdir)
/objc
AR
=
ar
AR_FLAGS
=
rc
# Always search these dirs when compiling.
SUBDIR_INCLUDES
=
-I
.
-I
..
-I
$(srcdir)
-I
$(srcdir)
/config
.c.o
:
$(GCC_FOR_TARGET)
-c
$(GCC_CFLAGS)
$(SUBDIR_INCLUDES)
$<
.m.o
:
$(GCC_FOR_TARGET)
-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.
# That's necessary to get the right values for srcdir, etc.
all
:
cd
..
;
$(MAKE)
sublibobjc.a
libobjc.a
:
core.o hash.o object.o
-
rm
-f
libobjc.a
$(AR)
rc libobjc.a object.o core.o hash.o
# ranlib is run in the parent directory's makefile.
OBJC_H
=
objc.h objc-proto.h record.h
$(srcdir)
/assert.h
$(srcdir)
/gstdarg.h
HASH_H
=
hash.h mutex.h
core.o
:
core.c $(OBJC_H) $(HASH_H) $(srcdir)/gstddef.h
hash.o
:
hash.c $(OBJC_H) $(HASH_H) $(srcdir)/gstddef.h
object.o
:
object.m object.h $(OBJC_H)
$(GCC_FOR_TARGET)
-c
$(GCC_CFLAGS)
$(SUBDIR_INCLUDES)
$<
mostlyclean
:
-
rm
-f
core.o hash.o object.o libobjc.a
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