From 5615d00be87bc2263ffa759a877a942c013a31ef Mon Sep 17 00:00:00 2001 From: "alexander.pickering" Date: Tue, 16 Sep 2014 15:51:04 -0400 Subject: Initial commit --- makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..2d89131 --- /dev/null +++ b/makefile @@ -0,0 +1,18 @@ +# the compiler: gcc for C program, define as g++ for C++ +CC = g++ + +# compiler flags: +PREFLAGS = +POSTFLAGS = -lncurses -ljack + +# the build target executable: +TARGET = vaud + + +all: $(TARGET) + +$(TARGET): $(TARGET).c + $(CC) $(PREFLAGS) -o $(TARGET) $(TARGET).c $(POSTFLAGS) + +clean: + $(RM) $(TARGET) -- cgit v1.2.3-70-g09d2