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

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

student: student.c
	${CC} ${ALL_FLAGS} student.c -o test

clean:
	rm *\.o