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:
parent
1d8b0f92d3
commit
b0b680c3eb
1 changed files with 2 additions and 1 deletions
3
Makefile
3
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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue