1234567891011121314151617181920212223 |
- # 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.
- #
- 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 += misc_syslog_clean
- misc_syslog_clean:
- $(do_rm) $(addprefix $(MISC_SYSLOG_OUT)/*., o os)
|