summaryrefslogtreecommitdiff
path: root/libterm/Makefile
blob: 5cc090c828720631a8766f72e8a26b4a9bfec770 (plain) (blame)
1
2
3
4
5
6
7
8
9

make:
	gcc -c term.c
	gcc -c screen_modes.c
	gcc -c print_utils.c
	ld -r term.o screen_modes.o print_utils.o -o libterm.o

clean:
	rm *.o