From 963199039083a094078e19ee5938abb2746259f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Andr=C3=A9n=20Zachrisson?= Date: Fri, 30 Oct 2015 21:49:01 +0100 Subject: [PATCH] Initial makefile --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 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)