From 87d44606836a396209ffad68141e5c3a0986c788 Mon Sep 17 00:00:00 2001 From: rodri Date: Sun, 10 Jan 2021 12:05:02 +0000 Subject: move from an inetd-dependent program to a standalone concurrent server. --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 59f4c54..e2a8a44 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,17 @@ CC=cc -CFLAGS=-Wall -Wno-missing-braces -Wno-parentheses -Wno-switch -Wno-pointer-to-int-cast -fno-diagnostics-color -ggdb -c -O2 -LDFLAGS=-static +CFLAGS=-Wall -Wno-missing-braces -Wno-parentheses -Wno-switch -Wno-pointer-to-int-cast -fno-diagnostics-color -I/usr/local/include -ggdb -c -O2 +LDFLAGS=-static -L/usr/local/lib -pthread -lfmt -lutf O=o TARG=filmoteca OFILES=\ filmoteca.$O\ - -LIBS=\ - libutf/libutf.a\ + util.$O\ HFILES=\ - libutf/utf.h\ + dat.h\ + fns.h\ + args.h\ .PHONY: all clean all: $(TARG) -- cgit v1.2.3