diff options
author | 2023-02-04 01:05:19 +0100 | |
---|---|---|
committer | 2023-02-04 01:05:19 +0100 | |
commit | 5f93e47f7e4aa784e87cd86668cab26393278761 (patch) | |
tree | f62d81002b7740c8b493e94ac677d45ad00a417e | |
parent | d204cf63a346701431139eab97c8374a998eca56 (diff) | |
download | log-5f93e47f7e4aa784e87cd86668cab26393278761.tar.gz log-5f93e47f7e4aa784e87cd86668cab26393278761.zip |
Correct includes in cflags
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ OBJ = ${SRC:.c=.o} LIBNAME = liblog -CFLAGS = -Wall -ansi --std=c89 -pedantic ${OPT} -I${LIBINC} +CFLAGS = -Wall -ansi --std=c89 -pedantic ${OPT} ${LIBINC} LDFLAGS = ${LIBS} dist: |