URI:
       Merge pull request #79 from jwilk-forks/indent - tty-clock - port of tty-clock to OpenBSD, with pledge/unveil added as goodie.
  HTML git clone https://git.drkhsh.at/tty-clock.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 577c4ec1b58888cb0df6b03a1e83e5223523a60d
   DIR parent 601c38c5672df6b66092b6db80a0d9dad1a35096
  HTML Author: anarcat <anarcat@users.noreply.github.com>
       Date:   Sat,  2 May 2020 09:55:44 -0400
       
       Merge pull request #79 from jwilk-forks/indent
       
       Makefile: fix uneven indentation
       Diffstat:
         M Makefile                            |       8 ++++----
       
       1 file changed, 4 insertions(+), 4 deletions(-)
       ---
   DIR diff --git a/Makefile b/Makefile
       @@ -13,14 +13,14 @@ ifeq ($(shell sh -c 'which ncurses6-config>/dev/null 2>/dev/null && echo y'), y)
                CFLAGS += -Wall -g $$(ncurses6-config --cflags)
                LDFLAGS += $$(ncurses6-config --libs)
        else ifeq ($(shell sh -c 'which ncursesw6-config>/dev/null 2>/dev/null && echo y'), y)
       -                CFLAGS += -Wall -g $$(ncursesw6-config --cflags)
       -                LDFLAGS += $$(ncursesw6-config --libs)
       +        CFLAGS += -Wall -g $$(ncursesw6-config --cflags)
       +        LDFLAGS += $$(ncursesw6-config --libs)
        else ifeq ($(shell sh -c 'which ncurses5-config>/dev/null 2>/dev/null && echo y'), y)
                CFLAGS += -Wall -g $$(ncurses5-config --cflags)
                LDFLAGS += $$(ncurses5-config --libs)
        else ifeq ($(shell sh -c 'which ncursesw5-config>/dev/null 2>/dev/null && echo y'), y)
       -                CFLAGS += -Wall -g $$(ncursesw5-config --cflags)
       -                LDFLAGS += $$(ncursesw5-config --libs)
       +        CFLAGS += -Wall -g $$(ncursesw5-config --cflags)
       +        LDFLAGS += $$(ncursesw5-config --libs)
        else
                CFLAGS += -Wall -g $$(pkg-config --cflags ncurses)
                LDFLAGS += $$(pkg-config --libs ncurses)