aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: 2d89131b3a0c4e881fc826a5c86c31b6502140b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)