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)
# Maths for FFT related code, libftdi is the driver for USB2DMX module, rt is for ftdi
LDFLAGS+=-lm -lftdi
# -lrt
LDFLAGS+=$(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)