Makefile.in 582 B

1234567891011121314151617181920212223
  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. subdirs += libc/misc/ttyent
  8. CSRC := getttyent.c
  9. MISC_TTYENT_DIR := $(top_srcdir)libc/misc/ttyent
  10. MISC_TTYENT_OUT := $(top_builddir)libc/misc/ttyent
  11. MISC_TTYENT_SRC := $(patsubst %.c,$(MISC_TTYENT_DIR)/%.c,$(CSRC))
  12. MISC_TTYENT_OBJ := $(patsubst %.c,$(MISC_TTYENT_OUT)/%.o,$(CSRC))
  13. libc-y += $(MISC_TTYENT_OBJ)
  14. objclean-y += misc_ttyent_clean
  15. misc_ttyent_clean:
  16. $(do_rm) $(addprefix $(MISC_TTYENT_OUT)/*., o os)