Description: move LDFLAGS later in LINKER command Author: John T. Nogatch --- morse-x-20040713.origubu/Makefile 2004-07-12 18:28:26.000000000 -0700 +++ morse-x-20040713/Makefile 2011-06-14 07:43:08.275365632 -0700 @@ -12,7 +12,7 @@ .SUFFIXES: .c .o all: $(OBJ) - $(LINKER) $(LDFLAGS) -o "$(BINARY)" $(OBJ) + $(LINKER) -o "$(BINARY)" $(OBJ) $(LDFLAGS) include Makefile.headers