diff options
Diffstat (limited to 'cpp/termbox/makefile')
-rw-r--r-- | cpp/termbox/makefile | 7 |
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 |