Break out libs into LDLIBS - ubase - suckless linux base utils
 (HTM) git clone git://git.suckless.org/ubase
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 78196620244d797752f87597797dfe0c4bb80bec
 (DIR) parent 0c008b65ee3dc4992087fb58aa798bc109c63b89
 (HTM) Author: sin <sin@2f30.org>
       Date:   Sun, 30 Nov 2014 12:30:52 +0000
       
       Break out libs into LDLIBS
       
       Diffstat:
         M Makefile                            |       4 ++--
         M config.mk                           |       3 ++-
       
       2 files changed, 4 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/Makefile b/Makefile
       @@ -150,7 +150,7 @@ config.h:
                cp config.def.h $@
        
        .o:
       -        $(LD) $(LDFLAGS) -o $@ $< $(LIB)
       +        $(LD) $(LDFLAGS) -o $@ $< $(LIB) $(LDLIBS)
        
        .c.o:
                $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ -c $<
       @@ -198,7 +198,7 @@ ubase-box: $(LIB) $(SRC)
                echo 'else {' >> build/$@.c
                for f in $(SRC); do echo "printf(\"`basename $$f .c`\"); putchar(' ');" >> build/$@.c; done
                echo "putchar(0xa); }; return 0; }" >> build/$@.c
       -        $(LD) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ build/*.c $(LIB)
       +        $(LD) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ build/*.c $(LIB) $(LDLIBS)
                rm -r build
        
        clean:
 (DIR) diff --git a/config.mk b/config.mk
       @@ -12,4 +12,5 @@ RANLIB = ranlib
        
        CPPFLAGS = -D_XOPEN_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
        CFLAGS   = -std=c99 -Wall -Wextra
       -LDFLAGS  = -s -lcrypt # -static
       +LDLIBS   = -lcrypt
       +LDFLAGS  = -s