aboutsummaryrefslogtreecommitdiff
path: root/c/timer/Makefile
blob: 410dc798f37b532fc7ffd557754b5651a33d569a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
include ../base.mk

CFLAGS := $(CFLAGS) $(shell pkg-config --cflags libnotify) -D_ISOC99_SOURCE
LDLIBS = $(shell pkg-config --libs libnotify)

all: timer
timer: main.c
	$(CC) $(CFLAGS) $(LDLIBS) -o $@ $<

clean:
	rm -f timer