aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: a2b542df01a02f7c539af7b9bc2a4aafa1c1b9cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CC = gcc
CFLAGS = -Wall -Ofast
LDFLAGS = -lpulse

TARGET = pavolctld
SOURCES = pavolctld.c

all: $(TARGET)

$(TARGET): $(SOURCES)
	$(CC) $(CFLAGS) -o $(TARGET) $(SOURCES) $(LDFLAGS)

clean:
	rm -f $(TARGET)