Skip to content

Commit

Permalink
config.mk: separate CPPFLAGS and CFLAGS
Browse files Browse the repository at this point in the history
  • Loading branch information
sighook committed Aug 6, 2024
1 parent 2fa177c commit 2f3c4ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

# flags
CFLAGS = -pedantic -Wall -Wextra -Wformat -DVERSION=\"${VERSION}\"
CPPFLAGS = -DVERSION=\"${VERSION}\"
CFLAGS = -pedantic -Wall -Wextra -Wformat ${CPPFLAGS}
LDFLAGS =

0 comments on commit 2f3c4ae

Please sign in to comment.