summaryrefslogtreecommitdiff
path: root/libc/misc/ttyent/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-03-21 09:20:19 +0000
committerEric Andersen <andersen@codepoet.org>2002-03-21 09:20:19 +0000
commitf0a9cfa4de786dcd979fd87f880779d2ff986f49 (patch)
tree934daf7d1631b459a950f92cdf359771fc8dc1f2 /libc/misc/ttyent/Makefile
parent73bd0903fe1ba8189c8657c1583796f08c8028bb (diff)
Support getttyent and friends so ncurses will compile
Diffstat (limited to 'libc/misc/ttyent/Makefile')
-rw-r--r--libc/misc/ttyent/Makefile39
1 files changed, 39 insertions, 0 deletions
diff --git a/libc/misc/ttyent/Makefile b/libc/misc/ttyent/Makefile
new file mode 100644
index 000000000..6a5fbcbfe
--- /dev/null
+++ b/libc/misc/ttyent/Makefile
@@ -0,0 +1,39 @@
+# Makefile for uClibc
+#
+# Copyright (C) 2002 Erik Andersen <andersen@uclibc.org>
+#
+# This program is free software; you can redistribute it and/or modify it under
+# the terms of the GNU Library General Public License as published by the Free
+# Software Foundation; either version 2 of the License, or (at your option) any
+# later version.
+#
+# This program is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
+# details.
+#
+# You should have received a copy of the GNU Library General Public License
+# along with this program; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+TOPDIR=../../../
+include $(TOPDIR)Rules.mak
+
+CSRC=getttyent.c
+COBJS=$(patsubst %.c,%.o, $(CSRC))
+OBJS=$(COBJS)
+
+all: $(OBJS) $(LIBC)
+
+$(LIBC): ar-target
+
+ar-target: $(OBJS)
+ $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
+
+$(COBJS): %.o : %.c
+ $(CC) $(CFLAGS) -c $< -o $@
+ $(STRIPTOOL) -x -R .note -R .comment $*.o
+
+clean:
+ rm -f *.[oa] *~ core
+