aboutsummaryrefslogtreecommitdiffstats
path: root/1.2-netsec/stdtime/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '1.2-netsec/stdtime/Makefile')
-rw-r--r--1.2-netsec/stdtime/Makefile24
1 files changed, 0 insertions, 24 deletions
diff --git a/1.2-netsec/stdtime/Makefile b/1.2-netsec/stdtime/Makefile
deleted file mode 100644
index e97010f0f..000000000
--- a/1.2-netsec/stdtime/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-OBJS=localtime.o
-
-all: libtime.a
-
-libtime.a: $(OBJS)
- ar rv $@ $(OBJS)
- ranlib $@
-
-install:
-
-clean:
- rm -f libtime.a *.o test .depend
-
-depend: .depend
-
-.depend:
- ../build_tools/mkdep $(CFLAGS) *.c
-
-test: test.c
- ${CC} ${CFLAGS} -o test test.c
-
-ifneq ($(wildcard .depend),)
-include .depend
-endif