diff options
Diffstat (limited to 'libc/misc/ttyent/Makefile.in')
| -rw-r--r-- | libc/misc/ttyent/Makefile.in | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/libc/misc/ttyent/Makefile.in b/libc/misc/ttyent/Makefile.in index 288a4c09b..02d7df8d1 100644 --- a/libc/misc/ttyent/Makefile.in +++ b/libc/misc/ttyent/Makefile.in @@ -1,21 +1,23 @@ # Makefile for uClibc # -# Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org> +# Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org> # # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. # -CSRC := getttyent.c +subdirs += libc/misc/ttyent + +CSRC-y := getttyent.c MISC_TTYENT_DIR := $(top_srcdir)libc/misc/ttyent MISC_TTYENT_OUT := $(top_builddir)libc/misc/ttyent -MISC_TTYENT_SRC := $(patsubst %.c,$(MISC_TTYENT_DIR)/%.c,$(CSRC)) -MISC_TTYENT_OBJ := $(patsubst %.c,$(MISC_TTYENT_OUT)/%.o,$(CSRC)) +MISC_TTYENT_SRC := $(patsubst %.c,$(MISC_TTYENT_DIR)/%.c,$(CSRC-y)) +MISC_TTYENT_OBJ := $(patsubst %.c,$(MISC_TTYENT_OUT)/%.o,$(CSRC-y)) libc-y += $(MISC_TTYENT_OBJ) -objclean-y += misc_ttyent_objclean +objclean-y += CLEAN_libc/misc/ttyent -misc_ttyent_objclean: - $(RM) $(MISC_TTYENT_OUT)/*.{o,os} +CLEAN_libc/misc/ttyent: + $(do_rm) $(addprefix $(MISC_TTYENT_OUT)/*., o os) |
