diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-30 00:45:24 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-30 00:45:24 +0000 |
| commit | b6aea9671f93fcff8a657f6027d2455bc422cabc (patch) | |
| tree | c51ba31ae1b45d7efae71e0e752dab36b3d86fbe | |
| parent | bb2d6e1b133f8f194dff9590bed13aef64a65318 (diff) | |
| download | uClibc-alpine-b6aea9671f93fcff8a657f6027d2455bc422cabc.tar.bz2 uClibc-alpine-b6aea9671f93fcff8a657f6027d2455bc422cabc.tar.xz | |
Copy from trunk.
| -rw-r--r-- | libc/misc/syslog/Makefile.in | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libc/misc/syslog/Makefile.in b/libc/misc/syslog/Makefile.in new file mode 100644 index 000000000..bc6cb0710 --- /dev/null +++ b/libc/misc/syslog/Makefile.in @@ -0,0 +1,26 @@ +# Makefile for uClibc +# +# Copyright (C) 2000 by Lineo, inc. +# Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org> +# +# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. +# + +CSRC:=syslog.c + +MISC_SYSLOG_DIR:=$(top_srcdir)libc/misc/syslog +MISC_SYSLOG_OUT:=$(top_builddir)libc/misc/syslog + +MISC_SYSLOG_SRC:=$(patsubst %.c,$(MISC_SYSLOG_DIR)/%.c,$(CSRC)) +MISC_SYSLOG_OBJ:=$(patsubst %.c,$(MISC_SYSLOG_OUT)/%.o,$(CSRC)) + +libc-a-y+=$(MISC_SYSLOG_OBJ) +libc-a-pic-y+=$(MISC_SYSLOG_OBJ:.o=.os) +libc-so-y+=$(MISC_SYSLOG_OBJ:.o=.os) + +libc-multi-y+=$(MISC_SYSLOG_SRC) + +objclean-y+=misc_syslog_objclean + +misc_syslog_objclean: + $(RM) $(MISC_SYSLOG_OUT)/*.{o,os} |
