From 2d61ab2af59271d2f16bcb1a065aca7142cdcbed Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Sun, 21 May 2017 17:36:15 -0700 Subject: [PATCH] Don't include -L$(LIBDIR) in RFLAGS, it is not needed during compilation --- bin/makefile-tail | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/makefile-tail b/bin/makefile-tail index eb1057c..eac0165 100755 --- a/bin/makefile-tail +++ b/bin/makefile-tail @@ -60,7 +60,7 @@ REQUIRED-INCS = $(INCDIR)version.h CFLAGS = $(OPTFLAGS) $(DFLAGS) $(FPFLAGS) DISPCFLAGS = $(DISPOPTFLAGS) $(DFLAGS) $(FPFLAGS) -RFLAGS = -c $(CFLAGS) -I$(INCDIR) -I$(INCLUDEDIR) -L$(LIBDIR) +RFLAGS = -c $(CFLAGS) -I$(INCDIR) -I$(INCLUDEDIR) ANSIRFLAGS = -c $(ANSIOPTFLAGS) $(DFLAGS) $(FPFLAGS) -I$(INCDIR) -I$(INCLUDEDIR) DISPRFLAGS = -c $(DISPCFLAGS) -I$(INCDIR) -I$(INCLUDEDIR)