| # Makefile for uClibc |
| # |
| # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org> |
| # |
| # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. |
| # |
| |
| subdirs += libc/misc/syslog |
| |
| 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)) |
| |
| ifeq ($(UCLIBC_HAS_SYSLOG),y) |
| libc-y += $(MISC_SYSLOG_OBJ) |
| endif |
| |
| objclean-y += CLEAN_libc/misc/syslog |
| |
| CLEAN_libc/misc/syslog: |
| $(do_rm) $(addprefix $(MISC_SYSLOG_OUT)/*., o os) |