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
Erik Andrén Zachrisson 1949b0d734 Add install target
2015-10-30 22:14:08 +01:00

25 lines
249 B
Makefile

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