diff options
author | Jakob Kaivo <jkk@ung.org> | 2022-04-21 19:00:51 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2022-04-21 19:00:51 -0400 |
commit | 5eba1c7003c0416aa32d61dbd4a80c6541add0f1 (patch) | |
tree | 9d0eb6f5ec80e780041fa17d20e9c111d6c8a91e /Makefile | |
parent | bbca177f14c831adb0e406346f0c24411fb93cfc (diff) |
make include dir a configure option
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,14 +1,15 @@ .POSIX: +include .config.mk + AR=ar ARFLAGS=rU -BASE_CFLAGS=-g -Wall -Wextra -Werror -nostdinc -fno-builtin -fno-stack-protector -fPIC -Iinclude -Isrc +BASE_CFLAGS=-g -Wall -Wextra -Werror -nostdinc -fno-builtin -fno-stack-protector -fPIC -I$(INCDIR) -Isrc OBJDIR=obj SRCDIR=src all: -include .config.mk include mk/all.mk cleandeps: |