From a804fdf7048d0ef4132cc2fa50b81256eda3c299 Mon Sep 17 00:00:00 2001 From: Darko Date: Thu, 26 Mar 2015 20:50:04 +0100 Subject: [PATCH] Minor fix. --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ca69724..91c1c23 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ DEBUG?= -g -CFLAGS?= -O2 -Wall -W -DSDS_ABORT_ON_OOM +CFLAGS?= -O2 -Wall -W CCOPT= $(CFLAGS) OBJ = main.o skiplist.o x.o @@ -7,7 +7,6 @@ PRGNAME = sl all: sl -# Deps (use make dep to generate this) main.o: x.h skiplist.h x.c skiplist.c main.c x.o: x.c x.h skiplist.o: x.c x.h skiplist.c skiplist.h