02e7336e97
not appear to be in use.
16 lines
494 B
Text
16 lines
494 B
Text
$NetBSD: patch-aa,v 1.2 2015/06/08 06:53:27 dsainty Exp $
|
|
|
|
Add in LDFLAGS, and compile before linking for compilers that optimise out
|
|
library symbols that do not appear to be in use.
|
|
|
|
--- Makefile.in.orig 2005-09-24 01:47:19.000000000 -0700
|
|
+++ Makefile.in
|
|
@@ -15,7 +15,7 @@ HOSTVER = @HOSTREL@
|
|
all: $(PROG)
|
|
|
|
$(PROG): tzosdclock.c
|
|
- $(CC) $(OPTS) $(CFLAGS) $(LIBS) tzosdclock.c -o $(PROG)
|
|
+ $(CC) $(OPTS) $(CFLAGS) tzosdclock.c $(LDFLAGS) $(LIBS) -o $(PROG)
|
|
|
|
clean:
|
|
-/bin/rm -rf $(PROG)
|