From b0b680c3ebec1380ea58ff55d56a2a386e7762d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Andr=C3=A9n=20Zachrisson?= Date: Fri, 30 Oct 2015 22:00:52 +0100 Subject: [PATCH] Add compiler flags --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ac4e7d7..8e13d28 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,7 @@ SRC = cue2pops.c CC = gcc +CFLAGS = -Wall TARGET = cue2pops @@ -10,7 +11,7 @@ RM = rm all: cue2pops cue2pops: - $(CC) $(SRC) -o $(TARGET) + $(CC) $(CFLAGS) $(SRC) -o $(TARGET) clean: $(RM) $(TARGET)