1
0
Fork 0
mirror of https://github.com/ErikAndren/cue2pops-mac.git synced 2025-04-19 23:48:06 +02:00

Add compiler flags

This commit is contained in:
Erik Andrén Zachrisson 2015-10-30 22:00:52 +01:00
parent 1d8b0f92d3
commit b0b680c3eb

View file

@ -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)