dyoung
2a44e65d9c
Don't duplicate code for listing sets used by makeplist, regpkg.
...
Instead, use the routine in sets.subr.
2003-06-23 09:18:45 +00:00
thorpej
01017edd1b
Check if md.${MACHINE}.${MACHINE_ARCH} exists and prefer it over
...
md.${MACHINE}.
2003-05-26 15:42:34 +00:00
he
dace8f1df0
Do not try to build LKMs on evbppc, because we cannot predetermine
...
the PPC_INTR_IMPL, which is used to include a file in <machine/intr.h>.
To allow evbppc to complete a ``make release'', we also need to
factor out the LKM files to a new set list file, and tweak makeflist
to not include this file for evbppc.
Discussed with Matt Thomas.
2003-03-15 22:32:07 +00:00
simonb
7176940e72
Enable MIPS now that crunchgen works again for this arch.
2003-01-29 11:32:45 +00:00
fvdl
ec2d95a2ad
Remove conditional for x86_64 to not include lintlibs, they're ok now.
2002-12-10 22:00:56 +00:00
lukem
62148d5f92
use ${make} instead of ${MAKE} in the shell scripts, to prevent weird
...
lossage with the modified ${MAKE} getting passed to child make's
2002-11-26 06:22:22 +00:00
lukem
8fa5df2d2d
explicitly add " -f dirname $0
/Makefile " to ${MAKE}, so that
...
these scripts do not need to be run from this directory in order
to function correctly
2002-11-25 23:29:54 +00:00
briggs
2cc2b9cde2
Some systems/shells have difficulty if the closing ] of a test does not have
...
preceding whitespace. Ensure that there is whitespace.
2002-10-10 20:46:39 +00:00
thorpej
b8c378293f
* Clean up the handling of rescue.* files makeflist.
...
* Move all md.* and ad.* /rescue/... files into their
own list files.
2002-10-09 01:22:37 +00:00
thorpej
7d588a758e
* Move the rescue bits into their own file.
...
* In makeflist, skip rescue bits in arch's that don't yet support it
(MIPS, currently, due to an objcopy-crunch bug).
2002-10-06 17:28:46 +00:00
lukem
94989d34ca
switch from checking USE_NEW_TOOLCHAIN == yes to TOOLCHAIN_MISSING != yes,
...
and don't bother with tc.old any more
2002-09-19 22:04:34 +00:00
thorpej
9aa60a9f15
If ad.${machine_arch} exists, perfer it over ad.${machine_cpu},
...
because it will have more specific information.
2002-08-10 02:01:00 +00:00
lukem
c64952588e
set MAKE="${MAKE:-make} -j 1" to prevent problems where the output
...
of make -j N>1 would result in junk in various shell variables
2002-07-23 09:02:45 +00:00
fredette
9090c61c66
Added support for ad.${machine_cpu}.shl listfiles. These list
...
architecture-dependent files that are present when shared libraries are in use.
2002-07-17 23:34:20 +00:00
nathanw
004890f326
cat the tc.shl setlist, instead of trying to run it.
2002-05-06 23:38:47 +00:00
thorpej
ff8e73ad35
Not all new-toolchain platforms support shared libraries (m68000 and
...
sh3, for example, due to defincencies in the current compiler version).
Deal with this by splitting toolchain shlibs into tc.shl, and teachking
makeflist about it.
Also, fix an old-toolchain remnant in the sh3 set lists.
2002-05-05 01:24:24 +00:00
wiz
b0435b05cd
According to thorpej, only x86_64 doesn't provide lint files now.
...
Remove corresponding conditionals for sparc64, m68000, and sh3, and
add one for x86_64.
2002-05-02 15:59:10 +00:00
tron
7547e52684
Solve problem with with XFree86 3.3.6/4.x set "maketars" differently:
...
We don't want e.g. a seperate "xbase.tgz" and "xbase3.tgz" but one
combined archive.
2002-04-08 17:18:22 +00:00
fredette
cbc8e60f5f
Added support for stl.mi and a stl.${objfmt} files for each set,
...
which respectively contain MI and objfmt-specific things associated
with static libraries. Useful for systems that don't have shared
libraries. Currently only used by lists/comp/stl.elf.
2002-03-26 22:58:17 +00:00
lukem
2d86ced5d9
" egrep ... | awk" can be replaced by a smarter bit of awk...
2002-02-27 10:42:55 +00:00
tron
24a6d142c3
First step of supporting XFree86 4.x binary sets:
...
- Recognize version dependent X11 lists files.
- Move all files which only belong to XFree86 3.3.6 in lists for version 3.
2002-02-11 16:23:17 +00:00
thorpej
acf28d4b8c
Oversight in last.
2001-11-24 03:06:17 +00:00
thorpej
b98949efa8
Use the logic in bsd.own.mk to figure out the toolchain format,
...
and to convert MACHINE_ARCH to a CPU. Make this cross-build
friendly by specifying MACHINE, MACHINE_ARCH, and MAKE in the
makeflist/checkflist environment.
2001-11-24 02:54:50 +00:00
tv
8d6c6077ed
The test for USE_NEW_TOOLCHAIN is based on the variable being *set*, not
...
a comparison of its value. Instead, use ${USE_NEW_TOOLCHAIN:Dyes} and
change the if block back to [ ... = "yes" ].
2001-11-19 20:43:33 +00:00
jmc
dabfb112ea
Change to check for nowarn instead of yes as USE_NEW_TOOLCHAIN changed formats
...
in bsd.own.mk.
Also, change the make line to use
2001-11-19 06:08:01 +00:00
jmc
6289ed7a3e
Change sets so the differing toolchain bits only (not the complete toolchain
...
at the moment) are pulled out into tc.mi and tc.old files.
tc.mi has any files which are in the new toolchain only and tc.old contains
the reverse (files which only existed in the old toolchain). The remainder
of the toolchain that is common between both old and new is still contained
in the various mi/md files.
Check for USE_NEW_TOOLCHAIN=yes in makeflist to determine which tc files to
pull in if they exist.
XXX - All the toolchain bits should eventually be pulled out into separate
lists as tc.mi and tc.<arch>. Leaving it for now until the new toolchain is
fully integrated on all ports.
2001-10-20 06:11:21 +00:00
thomas
623e0e4979
Atari now has ELF shared libs.
2001-09-08 11:09:26 +00:00
chs
7cffe4c898
switch cesfic to ELF.
2001-08-25 18:39:24 +00:00
mrg
8f8875394a
add support for ports that do not (can not) build lint libraries.
2001-08-19 13:15:18 +00:00
chs
bef49778fd
next68k is now ELF.
2001-05-12 22:38:04 +00:00
tsutsui
8c01e8025d
Switch news68k to ELF:
...
- Set shlib=elf on news68k
2001-03-19 17:02:53 +00:00
chs
7408da7619
sun3 now uses ELF.
2001-02-22 07:12:55 +00:00
jwise
1480bd07cc
Kill package field much more efficiently when creating flists from set lists.
2001-01-17 06:28:12 +00:00
itojun
56d8774587
sh3e[bl] -> sh3.
...
sh3 has no shlib yet.
2001-01-04 11:15:32 +00:00
simonb
f823c0808d
Add hp300 to the increasingly ugly `Compute toolchain' test.
2001-01-02 12:22:39 +00:00
scw
e8ededf413
Set shlib=elf for mvme68k.
...
(The mvme68k set lists still have a few problems even with this
change, but until all m68k ports -> ELF, there's no Other Way).
2000-12-19 22:35:06 +00:00
bjh21
6bff0c8662
arm26 is ELF, even if its shared libraries are currently broken.
2000-10-20 12:56:26 +00:00
tv
8b5d5857ce
Obliterate "man/md_share". The difference is negligible relative to the
...
size of the man set, and with all architectures' man pages in "man", we
can now share both "man" and "misc" on all platforms (CD-ROM space saver).
2000-10-05 00:11:43 +00:00
thorpej
d01921b990
Add the xmisc set.
2000-10-01 22:49:05 +00:00
mrg
940eb01a60
sparc64 is elf, too
2000-08-09 10:51:50 +00:00
thorpej
e7d6b96938
Merge a bunch of things from crypto-us and crypto-intl into basesrc,
...
adding support for Heimdal/KTH Kerberos where easy to do so. Eliminate
bsd.crypto.mk.
There is still a bunch more work to do, but crypto is now more-or-less
fully merged into the base NetBSD distribution.
2000-06-20 06:00:24 +00:00
jwise
f2cc32c633
Compatible upgrade to set list behavior -- any (whitespace separated) fields
...
after the first in each line of a set list are ignored. This introduces
no change in current set list behavior, but will need to be revisited if
we wish to distribute files with spaces in their names -- in this case we can
move to tab separated fields or some other behavior.
Current set lists work exactly as before, but in the future set lists may
have additional fields for use in a system packaging script.
I will post a detailed work plan for the system package system which uses
this to tech-pkg and tech-install in the next day or so.
2000-01-23 20:31:17 +00:00
mrg
60ea90bf92
add crypto-intl support in the "cryptint" set.
1999-11-27 13:10:45 +00:00
fvdl
25b8d43788
Bring setlists up to date for i386 switch to ELF and ipv6.
1999-07-04 20:07:51 +00:00
pk
4482c7e0a6
Make the sparc use the elf sets.
1999-06-06 09:26:51 +00:00
simonb
d727686794
Ignore lines starting with a ``#'' in the set list files.
1999-04-19 02:33:40 +00:00
simonb
1ffc056ded
Convert mipse[lb] to mips _after_ processing command line arguments.
1999-03-29 01:20:42 +00:00
itohy
d2ebbdebdc
Use "$MAKE" instead of "make" for cross environment.
1999-02-13 07:59:45 +00:00
tv
5163316f8d
Remap mipse[bl] to mips for set lists.
1999-02-09 19:34:18 +00:00
veego
46527edb83
Remove the machine check for missing shared libs support on the vax.
1999-01-30 16:58:02 +00:00