aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 56248bf97da0bda909c7701c20fb948014cc9bba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# netlink-notify - Notify about netlink changes

CC	:= gcc
CFLAGS	+= -O2 -Wall -Werror
CFLAGS	+= $(shell pkg-config --cflags --libs libnotify)
VERSION	= $(shell git describe --tags --long)

all: netlink-notify.c
	$(CC) $(CFLAGS) -o netlink-notify netlink-notify.c \
		-DVERSION="\"$(VERSION)\""

clean:
	/bin/rm -f *.o *~ netlink-notify