summaryrefslogtreecommitdiff
path: root/libterm/Makefile
blob: 98962f5ff0e2e3c2af141bcfd801b570dcbc6462 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
PROJECT=libterm
CC=gcc
LD=ld

make:
	$(CC) -c term.c
	$(CC) -c screen_modes.c
	$(CC) -c term_io.c
	$(LD) -r term.o screen_modes.o term_io.o -o $(PROJECT).o

clean:
	rm *.o