Makefile.in 635 B

123456789101112131415161718192021222324252627
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. #
  7. CSRC :=
  8. ifeq ($(UCLIBC_HAS_BSD_ERR),y)
  9. CSRC += err.c
  10. endif
  11. ifeq ($(UCLIBC_HAS_GNU_ERROR),y)
  12. CSRC += error.c
  13. endif
  14. MISC_ERROR_DIR := $(top_srcdir)libc/misc/error
  15. MISC_ERROR_OUT := $(top_builddir)libc/misc/error
  16. MISC_ERROR_SRC := $(patsubst %.c,$(MISC_ERROR_DIR)/%.c,$(CSRC))
  17. MISC_ERROR_OBJ := $(patsubst %.c,$(MISC_ERROR_OUT)/%.o,$(CSRC))
  18. libc-y += $(MISC_ERROR_OBJ)
  19. objclean-y += misc_error_clean
  20. misc_error_clean:
  21. $(do_rm) $(addprefix $(MISC_ERROR_OUT)/*., o os)