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)