diff options
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |