diff options
Diffstat (limited to 'termbox/makefile')
-rw-r--r-- | termbox/makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/termbox/makefile b/termbox/makefile new file mode 100644 index 00000000..8bdd2704 --- /dev/null +++ b/termbox/makefile @@ -0,0 +1,9 @@ +CFLAGS=-O3 -Wall -Wextra -D_XOPEN_SOURCE + +libtermbox.a: utf8.o termbox.o + ar rcs libtermbox.a *.o + +termbox.o: termbox.c input.inl output.inl bytebuffer.inl + +clean: + -rm *.o libtermbox.a |