aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: c99c7776267b4f76e24e4ed6b635ca4d38f3ea13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Makefile for gpt program

CC = gcc
CFLAGS = -Wall
LDFLAGS = -lpulse

TARGET = pavolctrld
SOURCES = pavolctrld.c

all: $(TARGET)

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

clean:
	rm -f $(TARGET)