From 9eee3ce8d8fd797b473b78882ec47a5f0d1fd631 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Sun, 4 Mar 2018 17:30:39 +0100 Subject: [PATCH] add Makefile.am --- Makefile.am | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Makefile.am diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..29e0a31 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,24 @@ +AM_CPPFLAGS = \ + @FREETYPE_CFLAGS@ \ + -I$(top_srcdir)/include + +bin_PROGRAMS = input + + +input_SOURCES = \ + input.c \ + inputd.c \ + io.c \ + text.c \ + gfx.c \ + fb_display.c \ + resize.c \ + pngw.cpp \ + png_helper.cpp + +input_LDADD = \ + @FREETYPE_LIBS@ + +install-exec-local: + install -d $(DESTDIR)/usr/bin + install -m 0755 input $(DESTDIR)/usr/bin/input -- 2.39.5