diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-02 23:50:51 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-02 23:50:51 +0000 |
commit | 39d74aae955e53852e4dbfbcd634c61cb8f31747 (patch) | |
tree | 78f89c5aa461aa348efb0c207f93087b045937ad /libc/misc/Makefile | |
parent | 6264eafa58e25b3b67c80b51b8ddc17bc50e2213 (diff) |
Patch from James Graves <jgraves@deltamobile.com> to get
m68k started. Should be just sysdeps/linux/m68k left to
hack at this point...
Diffstat (limited to 'libc/misc/Makefile')
-rw-r--r-- | libc/misc/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libc/misc/Makefile b/libc/misc/Makefile index 5c16c5478..6a3275903 100644 --- a/libc/misc/Makefile +++ b/libc/misc/Makefile @@ -25,7 +25,13 @@ include $(TOPDIR)Rules.mak LIBC=$(TOPDIR)libc.a -DIRS = assert crypt ctype fnmatch glob internals lsearch mntent syslog regex shm time utmp +DIRS = assert crypt ctype fnmatch glob internals lsearch mntent syslog shm time utmp + +# regex bombs out with an internal compiler error using m68k-pic-coff-gcc. +ifneq ($(TARGET_ARCH),m68k) + DIRS += regex +endif + all: libc.a |