From bef7e1a6f6ed28d580b331063baa35b34a8f1d25 Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Sat, 4 Dec 2021 14:29:49 +0100 Subject: Prepared `letter` type and updated CSS --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 14c362c..8051094 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ cflags.debug := -Wall -o0 -g -DDEBUG=1 cflags.release := -os -s CFLAGS := ${cflags.${BUILD}} -LIBS := -lcups +LIBS := -lcups -lmagic CFLAGS += -L/usr/local/lib CFLAGS += -I/usr/local/include @@ -14,6 +14,9 @@ FILES := cgi.c http_parser.c test: main ./main.${BUILD} +test_param: main + ./main.${BUILD} --test1 -a -b -c --test2 --pidfile=foo --pidfile foobar + main: clean $(CC) $(CFLAGS) -o $@.${BUILD} $(FILES) main.c $(LIBS) -- cgit v1.2.3