From 89737ad005f4c066234a5282a1a46eb68b2c1ace Mon Sep 17 00:00:00 2001 From: Joe Date: Tue, 3 Dec 2019 20:21:09 +0100 Subject: cpp mode --- Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d7db2c4..eec2142 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,32 @@ .POSIX: +default: all + +SHELL +SRCS_DIR = src/ +INCS_DIR = inc/ +OBJS_DIR = obj/ + +SRCS = ${SRCS_DIR}main.cpp +SRCS += ${SRCS_DIR}jo_exec.cpp +SRCS += ${SRCS_DIR}jo_notify.cpp + +INCS = ${INCS_DIR}jo_lowbat.hpp + +OBJS = $(patsubst ${SRCS_DIR}%.cpp,${OBJS_DIR}%.o,${SRCS}) + +CC = g++ +CFLAGS = -Wall +CFLAGS += -Wextra +CFLAGS += -Werror + +DEBUG = -g3 +FSANITIZE = -fsanitize=address + +OPTIMIZE = -O2 + +TARGET = lowbat + OS = $(shell uname -s) ifeq ($(OS), Darwin) PREFIX = /usr/local -- cgit v1.2.3