diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-02-05 18:54:24 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-02-05 18:55:08 +0100 |
commit | 1b3025b7352f5e432ffa1c7adc57085ac9092b77 (patch) | |
tree | bb94261d0cf3f76b7bc206a8aa2e69b2419b3944 /libc/misc/mntent | |
parent | aeac3e1220a8afc856bd25e4d87441a26588aac0 (diff) |
buildsys: switch libc to kbuild-style
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/misc/mntent')
-rw-r--r-- | libc/misc/mntent/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/misc/mntent/Makefile.in b/libc/misc/mntent/Makefile.in index daa888da0..3ced9bbd1 100644 --- a/libc/misc/mntent/Makefile.in +++ b/libc/misc/mntent/Makefile.in @@ -7,13 +7,13 @@ subdirs += libc/misc/mntent -CSRC := mntent.c +CSRC-y := mntent.c MISC_MNTENT_DIR := $(top_srcdir)libc/misc/mntent MISC_MNTENT_OUT := $(top_builddir)libc/misc/mntent -MISC_MNTENT_SRC := $(MISC_MNTENT_DIR)/mntent.c -MISC_MNTENT_OBJ := $(MISC_MNTENT_OUT)/mntent.o +MISC_MNTENT_SRC := $(patsubst %.c,$(MISC_MNTENT_DIR)/%.c,$(CSRC-y)) +MISC_MNTENT_OBJ := $(patsubst %.c,$(MISC_MNTENT_OUT)/%.o,$(CSRC-y)) libc-y += $(MISC_MNTENT_OBJ) |