summaryrefslogtreecommitdiffstats
path: root/libterm/Makefile
blob: 36e9932eb6485afd4f68c7afdc697c670878392a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
PROJECT=libterm
CC=gcc
LD=ld
CFLAGS=-g3

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

clean:
	rm *.o