From 65833c29766b1494da4382e3e3741498dc7037e2 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 7 Aug 2008 05:15:21 +0000 Subject: [PATCH] This order is required for -static. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d9f03883..e1fcd745 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.71 2008-07-02 21:22:57 nicm Exp $ +# $Id: Makefile,v 1.72 2008-08-07 05:15:21 nicm Exp $ .SUFFIXES: .c .o .y .h .PHONY: clean update-index.html upload-index.html @@ -92,7 +92,7 @@ CLEANFILES= ${PROG} *.o .depend *~ ${PROG}.core *.log index.html all: ${PROG} ${PROG}: ${OBJS} - ${CC} ${LDFLAGS} -o ${PROG} ${LIBS} ${OBJS} + ${CC} ${LDFLAGS} -o ${PROG} ${OBJS} ${LIBS} depend: mkdep ${CFLAGS} ${INCDIRS} ${SRCS:M*.c}