commit 963199039083a094078e19ee5938abb2746259f3 Author: Erik Andrén Zachrisson Date: Fri Oct 30 21:49:01 2015 +0100 Initial makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d801f89 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ + +SRC = cue2pops.c + +CC = gcc + +TARGET=cue2pops + +all: + $(CC) $(SRC) -o $(TARGET)