summaryrefslogtreecommitdiff
path: root/libc/utmp/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libc/utmp/Makefile')
-rw-r--r--libc/utmp/Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/libc/utmp/Makefile b/libc/utmp/Makefile
deleted file mode 100644
index 2c88bd2..0000000
--- a/libc/utmp/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright (C) 1996 Nat Friedman <ndf@aleph1.mit.edu>
-# This file is part of the Linux-8086 C library and is distributed
-# under the GNU Library General Public License.
-
-TOP=..
-include $(TOP)/Make.defs
-
-ifeq ($(LIB_OS),ELKS)
-OBJ=utent.o
-endif
-
-all: $(OBJ)
-
-libc.a: $(OBJ)
- ar r ../$(LIBC) $(OBJ)
- @touch libc.a
-
-%.o:%.c
-ifeq ($(PLATFORM),i386-Linux)
- $(CC) $(CFLAGS) $< -c -o $@ $(WALL)
-else
- $(CC) $(CFLAGS) $< -c -o $@ -ansi
-endif
-
-clean:
- rm -f *.o libc.a