summaryrefslogtreecommitdiff
path: root/Makefile
blob: 55db2ce1d3a63cb01d376999c9dc1551069fa5e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CC=gcc
CCFLAGS=-Wall -Wextra -O3
LDOUT=sysstatus
LIBS=-lasound

all: *.c *.h Makefile
	make -C statuses
	$(CC) $(CCFLAGS) -o $(LDOUT) $(LIBS) sysstatus.c statuses/*.o

clean:
	make -C statuses clean
	rm -f sysstatus