summaryrefslogtreecommitdiff
path: root/libc/termios/Makefile.in
blob: c77ee60e40f802b3abeac89cabfd3ebfb1982980 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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.
#

TERMIOS_DIR := $(top_srcdir)libc/termios
TERMIOS_OUT := $(top_builddir)libc/termios

TERMIOS_SRC := $(wildcard $(TERMIOS_DIR)/*.c)
TERMIOS_OBJ := $(patsubst $(TERMIOS_DIR)/%.c,$(TERMIOS_OUT)/%.o,$(TERMIOS_SRC))

libc-y += $(TERMIOS_OBJ)

objclean-y += termios_clean

termios_clean:
	$(do_rm) $(addprefix $(TERMIOS_OUT)/*., o os)