summaryrefslogtreecommitdiff
path: root/Makefile
blob: ad796c48d94f7af5d17e35680e54488d03b71747 (plain)
1
2
3
4
5
6
7
8
CC = gcc
ALL_FLAGS = -g

main: main.c handle_devices.c
	${CC} ${ALL_FLAGS} main.c handle_devices.c

clean:
	rm *\.o