]> git.webhop.me Git - msgbox.git/commitdiff
add Makefile.am master
authorThilo Graf <dbt@novatux.de>
Sun, 11 Mar 2018 17:01:31 +0000 (18:01 +0100)
committerThilo Graf <dbt@novatux.de>
Sun, 11 Mar 2018 18:24:22 +0000 (19:24 +0100)
Makefile.am [new file with mode: 0644]

diff --git a/Makefile.am b/Makefile.am
new file mode 100644 (file)
index 0000000..f3de972
--- /dev/null
@@ -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
+