aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-02-04 00:41:36 +0100
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-02-04 00:41:36 +0100
commit53302a6f04dab80aa14043a72bd519597fb23dfb (patch)
treec1f265f9ffdc6c8b0eb5e6d7f9f9d9eeeceb0e92
parent2dabd8282095ba21cf9c098bd87d6fef69069e4d (diff)
downloadlog-53302a6f04dab80aa14043a72bd519597fb23dfb.tar.gz
log-53302a6f04dab80aa14043a72bd519597fb23dfb.zip
Move includes to the head of Makefile
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index eb60cf5..1d756b8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,7 @@
# See LICENSE file for copyright and license details.
+include libs.mk
+
CC = cc
SRC != find src -name "*.c"
OBJ = ${SRC:.c=.o}
@@ -9,7 +11,6 @@ LIBNAME = liblog
CFLAGS = -Wall -ansi --std=c89 -pedantic ${OPT}
LDFLAGS =
-include libs.mk
dist:
@make OPT='-O2 -pipe -Werror' all