7 lines
115 B
Makefile
7 lines
115 B
Makefile
CFLAGS=$(shell pkg-config --libs --cflags libnotify)
|
|
tmhd: tmhd.c
|
|
cc $(CFLAGS) tmhd.c -o tmhd
|
|
|
|
clean:
|
|
rm -f tmhd
|