summaryrefslogtreecommitdiff
path: root/libc/misc/time/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libc/misc/time/Makefile')
-rw-r--r--libc/misc/time/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/libc/misc/time/Makefile b/libc/misc/time/Makefile
new file mode 100644
index 000000000..ab47a7e47
--- /dev/null
+++ b/libc/misc/time/Makefile
@@ -0,0 +1,24 @@
+# Copyright (C) 1996 Robert de Bath <robert@mayday.compulink.co.uk>
+# This file is part of the Linux-8086 C library and is distributed
+# under the GNU Library General Public License.
+
+LIBC=../libc.a
+
+CC=m68k-pic-coff-gcc
+AR=m68k-pic-coff-ar
+RANLIB=m68k-pic-coff-ranlib
+
+CCFLAGS= -O2 -m68000 -msoft-float -I../include
+
+OBJ=localtime.o gmtime.o asctime.o ctime.o asc_conv.o tm_conv.o mktime.o \
+ localtime_r.o gmtime_r.o asctime_r.o ctime_r.o
+
+CFLAGS=$(ARCH) $(CCFLAGS) $(DEFS)
+
+all: $(LIBC)
+ @$(RM) $(OBJ)
+
+$(LIBC): $(LIBC)($(OBJ))
+
+clean:
+ rm -f *.o libc.a