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