54b862f86f
It should be possible to run make with compilation CFLAGS / LIBS paramaters. For instance, 'make CFLAGS="-g3 -O0"'. Fixes #87 Signed-off-by: Alvaro Lopez Ortega <alvaro@gnu.org>
12 lines
249 B
Makefile
12 lines
249 B
Makefile
src = $(wildcard *.c)
|
|
obj = $(src:.c=.o)
|
|
|
|
override LIBS += $(shell pkg-config --libs glib-2.0)
|
|
override CFLAGS += -Wall -Wextra $(shell pkg-config --cflags glib-2.0)
|
|
|
|
conmon: $(obj)
|
|
$(CC) -o $@ $^ $(LIBS)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f $(obj) conmon
|