diff options
author | rodri <rgl@antares-labs.eu> | 2021-01-10 12:05:02 +0000 |
---|---|---|
committer | rodri <rgl@antares-labs.eu> | 2021-01-10 12:05:02 +0000 |
commit | 87d44606836a396209ffad68141e5c3a0986c788 (patch) | |
tree | 8b671d8a5a7a856c9a2fec577ae30b4083d1e51d /Makefile | |
parent | ad993c4293df8dc2e8fecc172efa82ea8d675def (diff) | |
download | filmoteca-87d44606836a396209ffad68141e5c3a0986c788.tar.gz filmoteca-87d44606836a396209ffad68141e5c3a0986c788.tar.bz2 filmoteca-87d44606836a396209ffad68141e5c3a0986c788.zip |
move from an inetd-dependent program to a standalone concurrent server.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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) |