aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorClecio Jung2023-03-19 09:15:26 -0300
committerClecio Jung2023-03-19 09:15:26 -0300
commit852e58a3e6d82362b66ace7f35056ba6693795c3 (patch)
tree55793c979586a3d38e6f5e085c6d7c9ebd899d8d /Makefile
parent0113ec2c4358a5a6f4ad473372a63d2aa3c249c0 (diff)
downloadlibini-852e58a3e6d82362b66ace7f35056ba6693795c3.tar.xz
libini-852e58a3e6d82362b66ace7f35056ba6693795c3.tar.zst
Custom string allocator
Introduced a function to convert properties to unsigned long And also improved the documentation of the library
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 134d617..fdb13b7 100755
--- a/Makefile
+++ b/Makefile
@@ -5,13 +5,14 @@
# Name of the executables to be generated
EXEC := examples/ini_file_read \
examples/ini_file_search \
- examples/ini_file_create
+ examples/ini_file_create
# Library files
LIB_FILES := ini_file.c ini_file.h
# Flags for compiler
-CFLAGS := -W -Wall -Wextra -pedantic -Wconversion -Werror -flto -std=c89 -O2
+CFLAGS := -W -Wall -Wextra -pedantic -Wconversion \
+ -Werror -flto -std=c89 -O2
# ----------------------------------------
# Compilation and linking rules