Makefile.in 642 B

12345678910111213141516171819202122232425
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. #
  7. CSRC:=getttyent.c
  8. MISC_TTYENT_DIR:=$(top_srcdir)libc/misc/ttyent
  9. MISC_TTYENT_OUT:=$(top_builddir)libc/misc/ttyent
  10. MISC_TTYENT_SRC:=$(patsubst %.c,$(MISC_TTYENT_DIR)/%.c,$(CSRC))
  11. MISC_TTYENT_OBJ:=$(patsubst %.c,$(MISC_TTYENT_OUT)/%.o,$(CSRC))
  12. libc-a-y+=$(MISC_TTYENT_OBJ)
  13. libc-a-pic-y+=$(MISC_TTYENT_OBJ:.o=.os)
  14. libc-so-y+=$(MISC_TTYENT_OBJ:.o=.os)
  15. libc-multi-y+=$(MISC_TTYENT_SRC)
  16. objclean-y+=misc_ttyent_objclean
  17. misc_ttyent_objclean:
  18. $(RM) $(MISC_TTYENT_OUT)/*.{o,os}