summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3234256911a5a082e3692f1ef489e72a20efa466 (plain)
1
2
3
4
5
6
7
CFLAGS=-Wall
LDFLAGS=-lacpi -lcpufreq

all: statusbar

statusbar: statusbar.c
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<