about summary refs log tree commit diff stats
path: root/cpp/termbox/makefile
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-25 08:07:45 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-25 08:09:17 -0700
commitb4bbd479174fd06c13295f33845f39427c0776b3 (patch)
treee7c7d47d8adde6ad8c442d07e977f90a7358e860 /cpp/termbox/makefile
parentafbe301d4fb3ec3a3c7fa92fe1b360c062dbaa25 (diff)
downloadmu-b4bbd479174fd06c13295f33845f39427c0776b3.tar.gz
1198 - now compiles on mac os; thanks sam putman
Just toss out that snprintf prototype I'd hackily copied in earlier and
avoid using snprintf entirely.

Hopefully I got the assertions right :/

Looks like the previous nul-padding was redundant. If you had snprintf
it would take care of it.
Diffstat (limited to 'cpp/termbox/makefile')
-rw-r--r--cpp/termbox/makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/termbox/makefile b/cpp/termbox/makefile
index 58d76b21..21055318 100644
--- a/cpp/termbox/makefile
+++ b/cpp/termbox/makefile
@@ -3,5 +3,7 @@ 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