summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJoe <bousset.rudy@gmail.com>2022-06-27 21:54:42 +0200
committerJoe <bousset.rudy@gmail.com>2022-06-27 21:54:42 +0200
commitd34f7e2196d61675bdff26d84b1f402b86685cef (patch)
treef4498521a9fe0eeb9db98e6587cb32cea125184f /Makefile
parentFirst commit (diff)
downloadmpdview-d34f7e2196d61675bdff26d84b1f402b86685cef.tar.gz
mpdview-d34f7e2196d61675bdff26d84b1f402b86685cef.tar.bz2
mpdview-d34f7e2196d61675bdff26d84b1f402b86685cef.tar.xz
mpdview-d34f7e2196d61675bdff26d84b1f402b86685cef.tar.zst
mpdview-d34f7e2196d61675bdff26d84b1f402b86685cef.zip
WIP
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index dd01c27..0495d56 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,7 @@
# ========================
#
# mpdview: Makefile
-# Mon, 27 Jun 2022 21:13:30 +0200
+# Mon, 27 Jun 2022 21:48:02 +0200
# Joe
#
# BSD Makefile
@@ -37,12 +37,13 @@ INCS := ${SRCS:.c=.h}
NAME := mpdview
CC ?= cc
-CFLAGS := -std=c89
+CFLAGS := -std=gnu89
CFLAGS += -Wall
CFLAGS += -Wextra
CFLAGS += -Werror
CFLAGS += -pedantic
-CFLAGS += -march=native -O2 -pipe
+CFLAGS += -isystem/usr/local/include
+# CFLAGS += -march=native -O2 -pipe
RM := rm -f
MKDIR := mkdir -p