about summary refs log tree commit diff stats
path: root/termbox/makefile
blob: f6a4fe74cdc83b5e1c034103b9ed5c8e8f166acf (plain) (blame)
1
2
3
4
5
6
7
8
9
CFLAGS=-O3 -Wall -Wextra -D_XOPEN_SOURCE

libtermbox.a: utf8.o termbox.o
	ar rcs libtermbox.a *.o

termbox.o: termbox.h termbox.c input.inl output.inl bytebuffer.inl

clean:
	-rm *.o libtermbox.a