summaryrefslogtreecommitdiff
path: root/Makefile
blob: bdf493a9c6e67a434c59e91e341843284cee3bff (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 devout

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

clean:
	rm *\.o