1
0
Fork 0
mirror of https://github.com/ErikAndren/cue2pops-mac.git synced 2025-04-19 15:38:04 +02:00
cue2pops-mac/Makefile
2015-10-30 23:12:39 +01:00

31 lines
351 B
Makefile

SRC = cue2pops.c
CC = gcc
CFLAGS = -Wall -Wextra
CFLAGS_DEBUG = $(CFLAGS) -O0 -g -DDEBUG
TARGET = cue2pops
INSTALL_DIR = /usr/local/bin
RM = rm
CP = cp
all: cue2pops
cue2pops:
$(CC) $(CFLAGS) $(SRC) -o $(TARGET)
debug:
$(CC) $(CFLAGS_DEBUG) $(SRC) -o $(TARGET)
install: cue2pops
$(CP) $(TARGET) $(INSTALL_DIR)
clean:
$(RM) $(TARGET)