aboutsummaryrefslogtreecommitdiff
path: root/alarm-tools/Makefile
blob: c5097f4e1af87824f5c2fb3dbd51140f25b9fc17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
include ../config.mk

LDFLAGS += -L../lib -lalarm
CFLAGS += -I../inc

all: alarms-show

alarms-show: alarms-show.o
	$(CC) -o $@ $^ $(LDFLAGS)

install:
	install -Dm755 alarms-show "$(DESTDIR)/$(PREFIX)/bin/alarms-show"

clean:
	rm alarms-show