Skip to content

Commit

Permalink
makefile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vampirefrog authored Dec 15, 2024
1 parent 933bdfb commit bf97cc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ CFLAGS=-Wall -Wextra -Werror -O2
LDFLAGS=

ifdef HAVE_LIBZIP
CFLAGS+=-DHAVE_LIBZIP $(pkg-config --cflags libzip)
CFLAGS+=-DHAVE_LIBZIP $(shell pkg-config --cflags libzip)
LDFLAGS+=$(shell pkg-config --libs libzip)
endif

ifdef HAVE_GZIP
CFLAGS+=-DHAVE_GZIP $(pkg-config --cflags zlib)
CFLAGS+=-DHAVE_GZIP $(shell pkg-config --cflags zlib)
LDFLAGS+=$(shell pkg-config --libs zlib)
endif

Expand Down

0 comments on commit bf97cc7

Please sign in to comment.