From c6218dbae579de0cd20f5a7f1e9877673e28225d Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 20 Dec 2000 22:52:58 +0000 Subject: A number of updates from Manuel Novoa III. Things look good... --- libc/sysdeps/linux/common/Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps') diff --git a/libc/sysdeps/linux/common/Makefile b/libc/sysdeps/linux/common/Makefile index 0a216f8ff..73190ac9c 100644 --- a/libc/sysdeps/linux/common/Makefile +++ b/libc/sysdeps/linux/common/Makefile @@ -29,14 +29,16 @@ LIBC=$(TOPDIR)libc.a CSRC =closedir.c dirfd.c getdents.c getdnnm.c gethstnm.c getpagesize.c \ isatty.c kernel_version.c mkfifo.c opendir.c readdir.c rewinddir.c \ seekdir.c setegid.c seteuid.c setpgrp.c statfix.c tell.c telldir.c \ - wait.c wait3.c _xmknod.c _fxstat.c _lxstat.c _xstat.c libc_init.c tcgetatr.c + wait.c wait3.c _xmknod.c libc_init.c tcgetatr.c COBJS=$(patsubst %.c,%.o, $(CSRC)) +NISRC= _fxstat.c _lxstat.c _xstat.c +NIOBJS=$(patsubst %.c,%.o, $(NISRC)) MSRC=syscalls.c MOBJ=$(shell ./list_syscalls.sh) -OBJ=$(COBJS) $(MOBJ) +OBJ=$(COBJS) $(NIOBJS) $(MOBJ) all: $(OBJ) $(LIBC) @@ -53,6 +55,10 @@ $(COBJS): $(CC) $(CFLAGS) $< -c $*.c -o $*.o $(STRIPTOOL) -x -R .note -R .comment $*.o +$(NIOBJS): + $(CC) $(CFLAGS) $< -c $*.c -o $*.o -fno-inline + $(STRIPTOOL) -x -R .note -R .comment $*.o + clean: rm -f *.[oa] *~ core -- cgit v1.2.3