From 53302a6f04dab80aa14043a72bd519597fb23dfb Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Sat, 4 Feb 2023 00:41:36 +0100 Subject: Move includes to the head of Makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3