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

Add dedicated rule and clean

This commit is contained in:
Erik Andrén Zachrisson 2015-10-30 21:51:24 +01:00
parent e4bf314ee4
commit 9141477cb0

View file

@ -3,7 +3,14 @@ SRC = cue2pops.c
CC = gcc
TARGET=cue2pops
TARGET = cue2pops
all:
RM = rm
all: cue2pops
cue2pops:
$(CC) $(SRC) -o $(TARGET)
clean:
$(RM) $(TARGET)