From 083585a1c025734c70d82fa30116f0f041ceab89 Mon Sep 17 00:00:00 2001 From: Arthur David Olson Date: Sat, 9 Apr 1994 17:59:28 -0400 Subject: [PATCH] use native getopt when available (but always use our strftime) in date SCCS-file: Makefile SCCS-SID: 7.24 --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 441d04e..71c9ce0 100644 --- a/Makefile +++ b/Makefile @@ -275,13 +275,13 @@ $(TZLIB): $(LIBOBJS) if [ -x /usr/ucb/ranlib -o -x /usr/bin/ranlib ] ; \ then ranlib $@ ; fi -# We use the system's logwtmp and strftime in preference to ours if available. +# We use the system's getopt and logwtmp in preference to ours if available. date: $(DATEOBJS) - ar r ,lib.a logwtmp.o strftime.o + ar r ,lib.a getopt.o logwtmp.o if [ -x /usr/ucb/ranlib -o -x /usr/bin/ranlib ] ; \ then ranlib ,lib.a ; fi - $(CC) $(CFLAGS) date.o localtime.o asctime.o getopt.o \ + $(CC) $(CFLAGS) date.o localtime.o asctime.o strftime.o \ -lc ,lib.a -o $@ rm -f ,lib.a