diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-14 23:19:38 -0600 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-12-05 21:12:19 +0100 |
commit | 383a059a280444c6e914620adfdf05b5bd728a45 (patch) | |
tree | 179e401e3306194d132dc64c7fe8dbba79a5d1e0 /libc/sysdeps/linux/e1/Makefile | |
parent | d2ac3a6b3a2d2369bec4bf9f0555ebbe72e7bdf5 (diff) |
good by e1
It is marked as broken and it seems you can't get
any hardware for that anymore.
Diffstat (limited to 'libc/sysdeps/linux/e1/Makefile')
-rw-r--r-- | libc/sysdeps/linux/e1/Makefile | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/libc/sysdeps/linux/e1/Makefile b/libc/sysdeps/linux/e1/Makefile deleted file mode 100644 index 29d1c9e47..000000000 --- a/libc/sysdeps/linux/e1/Makefile +++ /dev/null @@ -1,56 +0,0 @@ -# Makefile for uClibc -# -# Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org> -# -# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. - -TOPDIR=../../../../ -include $(TOPDIR)Rules.mak - -#FIXME -- this arch should include its own crti.S and crtn.S -UCLIBC_CTOR_DTOR=n - -# If you're looking for vfork(), it is defined in include/unistd.h - -CRT_SRC := crt0.S -CRT_OBJ := crt0.o -CTOR_TARGETS := $(TOPDIR)lib/crti.o $(TOPDIR)lib/crtn.o - -# why is crt1.c listed in CSRC ? -CSRC := crt1.c syscalls.c longjmp.c setjmp.c -OBJS := $(patsubst %.c,%.o, $(CSRC)) - -OBJ_LIST := ../../../obj.sysdeps.$(TARGET_ARCH) - -all: $(OBJ_LIST) $(CTOR_TARGETS) - -$(OBJ_LIST): $(OBJS) $(CRT_OBJ) - $(STRIPTOOL) -x -R .note -R .comment $^ - $(INSTALL) -d $(TOPDIR)lib/ - cp $(CRT_OBJ) $(TOPDIR)lib/ - echo $(patsubst %, sysdeps/linux/$(TARGET_ARCH)/%, $(OBJS)) > $@ - -$(CRT_OBJ): %.o : %.S - $(CC) $(ASFLAGS) -c $< -o $@ - -$(OBJS): %.o : %.c - $(CC) $(CFLAGS) -c $< -o $@ - -ifeq ($(UCLIBC_CTOR_DTOR),y) -$(TOPDIR)lib/crti.o: crti.S - $(INSTALL) -d $(TOPDIR)lib/ - $(CC) $(ASFLAGS) $(SSP_DISABLE_FLAGS) -c $< -o $@ - -$(TOPDIR)lib/crtn.o: crtn.S - $(INSTALL) -d $(TOPDIR)lib/ - $(CC) $(ASFLAGS) $(SSP_DISABLE_FLAGS) -c $< -o $@ -else -$(CTOR_TARGETS): - $(INSTALL) -d $(TOPDIR)lib/ - $(AR) $(ARFLAGS) $@ -endif - -headers: - -clean: - $(RM) *.o *~ core |