aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authoralexander.pickering <alexander.pickering@anondomain.site90.net>2014-09-16 15:51:04 -0400
committeralexander.pickering <alexander.pickering@anondomain.site90.net>2014-09-16 15:51:04 -0400
commit5615d00be87bc2263ffa759a877a942c013a31ef (patch)
treeba2b9450f70e5b420e269f1f44012770a7fee360 /makefile
downloadvaud-5615d00be87bc2263ffa759a877a942c013a31ef.tar.gz
vaud-5615d00be87bc2263ffa759a877a942c013a31ef.tar.bz2
vaud-5615d00be87bc2263ffa759a877a942c013a31ef.zip
Initial commit
Diffstat (limited to 'makefile')
-rw-r--r--makefile18
1 files changed, 18 insertions, 0 deletions
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)