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

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