From: Thilo Graf Date: Sun, 11 Mar 2018 17:01:31 +0000 (+0100) Subject: add Makefile.am X-Git-Url: https://git.webhop.me/?a=commitdiff_plain;h=02fa5710ceb0af6d810d3d57a0fe5ecb3e47a369;p=msgbox.git add Makefile.am --- diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..f3de972 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,24 @@ +AM_CPPFLAGS = \ + @FREETYPE_CFLAGS@ \ + -I$(top_srcdir)/include + +noinst_PROGRAMS = msgbox + +msgbox_SOURCES = \ + msgbox.c \ + gfx.c \ + io.c \ + txtform.c \ + text.c \ + fb_display.c \ + resize.c \ + pngw.cpp \ + png_helper.cpp + +msgbox_LDADD = \ + @FREETYPE_LIBS@ + +install-exec-local: + install -d $(DESTDIR)/usr/bin + install -m 0755 msgbox $(DESTDIR)/usr/bin/msgbox +