diff options
| author | alexander.pickering <alexander.pickering@anondomain.site90.net> | 2014-09-16 15:51:04 -0400 |
|---|---|---|
| committer | alexander.pickering <alexander.pickering@anondomain.site90.net> | 2014-09-16 15:51:04 -0400 |
| commit | 5615d00be87bc2263ffa759a877a942c013a31ef (patch) | |
| tree | ba2b9450f70e5b420e269f1f44012770a7fee360 /makefile | |
| download | vaud-5615d00be87bc2263ffa759a877a942c013a31ef.tar.gz vaud-5615d00be87bc2263ffa759a877a942c013a31ef.tar.bz2 vaud-5615d00be87bc2263ffa759a877a942c013a31ef.zip | |
Initial commit
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 18 |
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) |
