diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-23 13:10:30 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-23 13:10:30 +0000 |
commit | fc0f3ff28e91d51179ba46f2f83108f08eb6af96 (patch) | |
tree | 8b44e153cb02c328939c70201b7daf5e431bb3e4 /libc/sysdeps/linux/powerpc/Makefile | |
parent | a5ccd4df72ddc8a76ee662de645ca85d0d30052f (diff) |
Rewrite powerpc crt0.S for proper ctor/dtor handling
Diffstat (limited to 'libc/sysdeps/linux/powerpc/Makefile')
-rw-r--r-- | libc/sysdeps/linux/powerpc/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/powerpc/Makefile b/libc/sysdeps/linux/powerpc/Makefile index ef32f868f..5b5967d91 100644 --- a/libc/sysdeps/linux/powerpc/Makefile +++ b/libc/sysdeps/linux/powerpc/Makefile @@ -1,6 +1,6 @@ # Makefile for uClibc # -# Copyright (C) 2000-2002 Erik Andersen <andersen@uclibc.org> +# Copyright (C) 2000-2003 Erik Andersen <andersen@uclibc.org> # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU Library General Public License as published by the Free @@ -20,8 +20,6 @@ TOPDIR=../../../../ include $(TOPDIR)Rules.mak ASFLAGS=$(CFLAGS) -TARGET_MACHINE_TYPE=$(shell $(CC) -dumpmachine) - CRT0_SRC = crt0.S CRT0_OBJ = crt0.o crt1.o @@ -31,7 +29,7 @@ SOBJS=$(patsubst %.S,%.o, $(SSRC)) CSRC=_mmap.c vfork.c __syscall_error.c pread_write.c COBJS=$(patsubst %.c,%.o, $(CSRC)) -OBJS=$(SOBJS) $(MOBJ) $(COBJS) +OBJS=$(SOBJS) $(COBJS) all: $(OBJS) $(LIBC) @@ -56,6 +54,7 @@ $(COBJS): %.o : %.c headers: + clean: rm -f *.[oa] *~ core rm -f bits/sysnum.h |