summaryrefslogtreecommitdiff
path: root/Makefile
blob: 197df3158cb07511d131e019abb87cf70da58040 (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 -o controller_prog

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

clean:
	rm *\.o