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-22 17:15:19 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-22 17:15:19 -0700
commit5f1285238b09a5f01836138f5bb94654f78588a7 (patch)
tree167153b6944af30fc25c3097f25b16f658e5bd8a /cpp/termbox/makefile
parente89eaad3410cf513c5235ff45db60bf994fbb104 (diff)
downloadmu-5f1285238b09a5f01836138f5bb94654f78588a7.tar.gz
1136 - switch from ncurses to https://github.com/nsf/termbox
Diffstat (limited to 'cpp/termbox/makefile')
-rw-r--r--cpp/termbox/makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/termbox/makefile b/cpp/termbox/makefile
new file mode 100644
index 00000000..58d76b21
--- /dev/null
+++ b/cpp/termbox/makefile
@@ -0,0 +1,7 @@
+CFLAGS=-O3 -Wall -Wextra -D_XOPEN_SOURCE
+
+libtermbox.a: utf8.o termbox.o
+	ar rcs libtermbox.a *.o
+
+clean:
+	rm *.o libtermbox.a