From 5772d91183ad4f3a8dc1d5c469bc7d295764b80c Mon Sep 17 00:00:00 2001 From: defanor Date: Sat, 17 Aug 2019 23:22:42 +0300 Subject: Add the prototype --- src/Makefile.am | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/Makefile.am (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..74c18e7 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,10 @@ +AM_CFLAGS = -Werror -Wall -Wextra -Wno-unused-parameter +# todo: add -pedantic later, allowing the draft to be relatively messy +# for now + +bin_PROGRAMS = wwwlite + +wwwlite_SOURCES = main.c inlinebox.c documentbox.c blockbox.c tablebox.c browserbox.c +noinst_HEADERS = inlinebox.h documentbox.h blockbox.h tablebox.h browserbox.h +wwwlite_CFLAGS = $(LIBSOUP_CFLAGS) $(LIBXML_CFLAGS) $(GTK3_CFLAGS) $(AM_CFLAGS) +wwwlite_LDADD = $(LIBSOUP_LIBS) $(LIBXML_LIBS) $(GTK3_LIBS) -- cgit v1.2.3