Bump template and commits

This commit is contained in:
Alex D. 2021-08-18 16:11:21 +00:00
parent 82c72ef52b
commit dd489bdf74
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
5 changed files with 16 additions and 14 deletions

@ -1 +1 @@
Subproject commit 4ff817029be3e6c972c702c691cb5cd9ad7f684d Subproject commit dd649c2ffc26cbc58c207a41b617083c42001ebf

@ -1 +1 @@
Subproject commit b0fe2f65f2aeaa10959837663ffc967bd9950c14 Subproject commit 3e3495e0cba145c9225f6c66aeb95d474297978f

View File

@ -1,18 +1,15 @@
include config.mk include config.mk
include sources.mk
ifeq (${CC},clang) ifeq (${CC},clang)
CFLAGS =\
CFLAGS :=\
-std=c99\ -std=c99\
-Weverything\ -Weverything\
-Wno-padded\ -Wno-padded\
-Wno-disabled-macro-expansion\ -Wno-disabled-macro-expansion\
-pedantic\ -pedantic
${CFLAGS}
else ifeq (${CC},gcc) else ifeq (${CC},gcc)
CFLAGS =\
CFLAGS :=\
-std=c99\ -std=c99\
-Wall\ -Wall\
-Wextra\ -Wextra\
@ -29,13 +26,15 @@ CFLAGS :=\
-Wshadow\ -Wshadow\
-Wunsafe-loop-optimizations\ -Wunsafe-loop-optimizations\
-Wparentheses\ -Wparentheses\
-pedantic\ -pedantic
${CFLAGS} endif
ifeq (${DEBUG},1)
CFLAGS += -g
else
CFLAGS += -O2
endif endif
SRC = template.c
HDR = template.h
OBJ = ${SRC:.c=.o} OBJ = ${SRC:.c=.o}
all: ${OBJ} all: ${OBJ}

View File

@ -1,3 +1,4 @@
VERSION = 0.0 VERSION = 0.0
PREFIX = /usr/local PREFIX = /usr/local
CC = clang CC = clang
DEBUG = 1

2
template/sources.mk Normal file
View File

@ -0,0 +1,2 @@
SRC = template.c
HDR = template.h