X-Git-Url: http://git.bytex64.net/?a=blobdiff_plain;f=Makefile;h=5113e701f6898df8fee225723cd599cbf1c9dda7;hb=88b2727cbe5eb12a74f83085938670ac348a27d3;hp=e804abe60e373ce0fbc7c7454dcad3638a6a7483;hpb=1cf0f1ebfbd5b5a621af2a49ac0328fd0cec4bf4;p=blerg.git diff --git a/Makefile b/Makefile index e804abe..5113e70 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,14 @@ CFLAGS ?= -g -INCLUDES = -I. -Idatabase -Imisc -Ilibmicrohttpd-0.9.3/src/include -Iyajl/build/yajl-1.0.11/include +INCLUDES = -I. -Ifcgi -Idatabase -Icommon -Icgi-util-2.2.1 -Ilibmicrohttpd-0.9.3/src/include -Iyajl/build/yajl-1.0.11/include LDFLAGS ?= -LIBDIRS = -Llibmicrohttpd-0.9.3/src/daemon/.libs -Lyajl/build/yajl-1.0.11/lib +HTTP_LIBDIRS = -Llibmicrohttpd-0.9.3/src/daemon/.libs -Lyajl/build/yajl-1.0.11/lib +CGI_LIBDIRS = -Lcgi-util-2.2.1 -Lyajl/build/yajl-1.0.11/lib -targets = blerg.a blergtool http_blerg +targets = blerg.a blergtool http_blerg cgi_blerg blerg_a_objects = database/database.o database/tags.o blergtool_objects = tools/blergtool.o blerg.a -http_blerg_objects = http/http_blerg.o http/canned_responses.o misc/auth.o blerg.a +http_blerg_objects = http/http_blerg.o http/canned_responses.o common/app.o common/auth.o blerg.a +cgi_blerg_objects = cgi/cgi_blerg.o common/app.o common/auth.o blerg.a all: $(targets) @@ -20,7 +22,10 @@ blergtool: $(blergtool_objects) gcc $(LDFLAGS) $^ -o $@ http_blerg: $(http_blerg_objects) - gcc $(LIBDIRS) $(LDFLAGS) $(http_blerg_objects) -lpthread -lmicrohttpd -lyajl_s -o $@ + gcc $(HTTP_LIBDIRS) $(LDFLAGS) $(http_blerg_objects) -lpthread -lmicrohttpd -lyajl_s -o $@ + +cgi_blerg: $(cgi_blerg_objects) + gcc $(CGI_LIBDIRS) $(LDFLAGS) $(cgi_blerg_objects) -lcgi-util -lyajl_s -o $@ %.o: %.c gcc $(INCLUDES) $(CFLAGS) -c $< -o $@