diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-04 17:03:47 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-04 17:03:47 +0000 |
commit | ae9bb92ccc2b4a9a75b09c59e1351a78e6a6da53 (patch) | |
tree | 3b9f55f665059c5fc5c29d88d99be219e2411ecd /libc/sysdeps/linux/sparc/Makefile | |
parent | 84a9d87e2d6b237ff10990338ce76f050e1c3e2a (diff) |
Initial sparc port, thanks to Mathew Bosworth <mbosworth@metaflow.com>,
who sent this to me a month ago and I forgot to check it in. Oops.
Better late then never.
-Erik
Diffstat (limited to 'libc/sysdeps/linux/sparc/Makefile')
-rw-r--r-- | libc/sysdeps/linux/sparc/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/sparc/Makefile b/libc/sysdeps/linux/sparc/Makefile index d7490d43d..fdc802b89 100644 --- a/libc/sysdeps/linux/sparc/Makefile +++ b/libc/sysdeps/linux/sparc/Makefile @@ -28,10 +28,12 @@ ASFLAGS=$(CFLAGS) CRT0=crt0.S CRT0_OBJ=$(patsubst %.S,%.o, $(CRT0)) -SSRC= +SSRC=__longjmp.S setjmp.S vfork.S +#SSRC=__longjmp.S _start.S setjmp.S vfork.S SOBJS=$(patsubst %.S,%.o, $(SSRC)) -CSRC= +CSRC=fork.c ptrace.c +#CSRC=fork.c ptrace.c COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(SOBJS) $(MOBJ) $(COBJS) |