diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-08-07 05:15:21 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-08-07 05:15:21 +0000 |
commit | 65833c29766b1494da4382e3e3741498dc7037e2 (patch) | |
tree | 2cf3de2d94199344ab44f5dc73e1ab72a273ba2d | |
parent | 3a6e41c5cb3e4d1c6d4e4cbfcab9babe1353d053 (diff) | |
download | rtmux-65833c29766b1494da4382e3e3741498dc7037e2.tar.gz rtmux-65833c29766b1494da4382e3e3741498dc7037e2.tar.bz2 rtmux-65833c29766b1494da4382e3e3741498dc7037e2.zip |
This order is required for -static.
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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} |