summaryrefslogtreecommitdiff
path: root/src/Makefile
blob: 67d7035314f333812ed19dcd5134df8e15da6e67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
CC=gcc
CFLAGS=-W -Wall -Werror -Wno-error=unused-parameter -g
LDFLAGS=-Werror -g
EXEC=music2light

CFLAGS+=$(shell pkg-config --cflags gtk+-2.0 gthread-2.0 libpulse)
LDFLAGS+=-lm $(shell pkg-config --libs gtk+-2.0 gthread-2.0 libpulse)

SRC= $(wildcard *.c)
OBJ= $(SRC:.c=.o)

all: $(EXEC)

$(EXEC): $(OBJ)
	$(CC) -o $@ $^ $(LDFLAGS)

#main.o: hello.h

%.o: %.c
	$(CC) -o $@ -c $< $(CFLAGS)

.PHONY: clean mrproper

clean:
	rm *.o

mrproper: clean
	rm $(EXEC)