From 9141477cb058b934be69c4fba2268f82897faff0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Andr=C3=A9n=20Zachrisson?= Date: Fri, 30 Oct 2015 21:51:24 +0100 Subject: [PATCH] Add dedicated rule and clean --- Makefile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d801f89..ac4e7d7 100644 --- a/Makefile +++ b/Makefile @@ -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)