Skip to content

Commit

Permalink
fix Makefile variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
sgerwk committed Apr 18, 2018
1 parent adca201 commit ca895b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ PROGS=pdftoroff pdffit pdfrects hovacui fbhovacui xhovacui

CFLAGS+=-g -Wall -Wextra -Wformat -Wformat-security
CFLAGS+=${shell pkg-config --cflags poppler-glib}
LDFLAGS+=${shell pkg-config --libs poppler-glib}
fbhovacui hovacui: LDFLAGS+=\
LDLIBS+=${shell pkg-config --libs poppler-glib}
fbhovacui hovacui: LDLIBS+=\
${shell pkg-config --libs ncurses || echo '' -lncurses -ltinfo}
xhovacui hovacui: LDFLAGS+=${shell pkg-config --libs x11}
xhovacui hovacui: LDLIBS+=${shell pkg-config --libs x11}

all: ${PROGS}

Expand Down

0 comments on commit ca895b1

Please sign in to comment.