From 8173ed8cb62f22ca2ebb33a63b5b9954afb20d7e Mon Sep 17 00:00:00 2001 From: Daniel Santos Date: Mon, 11 Oct 2021 23:58:22 -0500 Subject: build: Add autotools option for those who want it Closes #40. --- autotools/Makefile.am | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 autotools/Makefile.am (limited to 'autotools/Makefile.am') diff --git a/autotools/Makefile.am b/autotools/Makefile.am new file mode 100644 index 0000000..002d475 --- /dev/null +++ b/autotools/Makefile.am @@ -0,0 +1,7 @@ +bin_PROGRAMS = lolcat censor +lolcat_SOURCES = ../lolcat.c +censor_SOURCES = ../censor.c + +LIBS += -lm +CFLAGS ?= -O3 +AM_CFLAGS = -std=c11 -Wall -Wextra -Wno-sign-compare -Werror=implicit -- cgit