aboutsummaryrefslogtreecommitdiff
path: root/sim/README-HACKING
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-12-26 22:39:03 -0500
committerMike Frysinger <vapier@gentoo.org>2023-01-10 01:15:26 -0500
commite732fe9b4f9909b0fbfa0bcac2ba048ca7d24ee2 (patch)
treedee3de755eeaedf5c86fe35e92ad6b1632def42f /sim/README-HACKING
parent7a59a0b92cb36e7f591e5d6a3874667a326f37e6 (diff)
downloadfsf-binutils-gdb-e732fe9b4f9909b0fbfa0bcac2ba048ca7d24ee2.zip
fsf-binutils-gdb-e732fe9b4f9909b0fbfa0bcac2ba048ca7d24ee2.tar.gz
fsf-binutils-gdb-e732fe9b4f9909b0fbfa0bcac2ba048ca7d24ee2.tar.bz2
sim: build: drop support for creating libsim.a in subdirs
Now that all ports have moved to creating libsim.a in the top-level, drop all the support code to create it in a subdir.
Diffstat (limited to 'sim/README-HACKING')
-rw-r--r--sim/README-HACKING4
1 files changed, 0 insertions, 4 deletions
diff --git a/sim/README-HACKING b/sim/README-HACKING
index 38d871b..fd6461e 100644
--- a/sim/README-HACKING
+++ b/sim/README-HACKING
@@ -44,8 +44,6 @@ The Makefile.in of a simulator using the common framework should look like:
# Not all of these need to be mentioned, only the necessary ones.
# In fact it is better to *not* mention ones if the value is the default.
-# List of object files, less common parts.
-SIM_OBJS =
# List of flags to always pass to $(CC).
SIM_EXTRA_CFLAGS =
# Dependency of `clean' to clean any extra files.
@@ -53,8 +51,6 @@ SIM_EXTRA_CLEAN =
## COMMON_POST_CONFIG_FRAG
-# Rules need to build $(SIM_OBJS), plus whatever else the target wants.
-
... target specific rules ...
--- snip ---