summaryrefslogtreecommitdiff
path: root/Makefile
blob: 765a697fb6e23b649b7efc79d00c1ccd4cda713f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
include config.mk

src/randsleep: src/randsleep.c
	${CC} ${CFLAGS} ${LDFLAGS} -o $@ $<

install: src/randsleep

uninstall:
	rm -f src/randsleep

clean:
	rm -f src/randsleep

.PHONY: all install uninstall clean