Makefile.in 541 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/mntent
  8. CSRC := mntent.c
  9. MISC_MNTENT_DIR := $(top_srcdir)libc/misc/mntent
  10. MISC_MNTENT_OUT := $(top_builddir)libc/misc/mntent
  11. MISC_MNTENT_SRC := $(MISC_MNTENT_DIR)/mntent.c
  12. MISC_MNTENT_OBJ := $(MISC_MNTENT_OUT)/mntent.o
  13. libc-y += $(MISC_MNTENT_OBJ)
  14. objclean-y += misc_mntent_clean
  15. misc_mntent_clean:
  16. $(do_rm) $(addprefix $(MISC_MNTENT_OUT)/*., o os)