Some refactoring, remove build bits for libmicrohttpd
[blerg.git] / Makefile
index a116407..bf27046 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,15 @@
-CFLAGS = -g
-LIBS =
+CFLAGS = -g -Ilibmicrohttpd-0.9.3/src/include -Iyajl/build/yajl-1.0.11/include
+LDFLAGS = -Llibmicrohttpd-0.9.3/src/daemon/.libs -Lyajl/build/yajl-1.0.11/lib
 
-targets = blerg.a blergtool tag_test
+targets = blerg.a blergtool http_blerg
 blerg_a_objects = database.o tags.o
 blergtool_objects = blergtool.o blerg.a
+http_blerg_objects = http_blerg.o auth.o blerg.a
 
 all: $(targets)
 
 clean:
-       rm -f $(targets) $(blerg_a_objects) $(blergtool_objects)
+       rm -f $(targets) $(blerg_a_objects) $(blergtool_objects) $(http_blerg_objects)
 
 blerg.a: $(blerg_a_objects)
        ar rcu $@ $(blerg_a_objects)
@@ -16,5 +17,8 @@ blerg.a: $(blerg_a_objects)
 blergtool: $(blergtool_objects)
        gcc $^ -o $@
 
+http_blerg: $(http_blerg_objects)
+       gcc $(LDFLAGS) $(http_blerg_objects) -lpthread -lmicrohttpd -lyajl_s -o $@
+
 %.o: %.c
        gcc $(CFLAGS) $(LIBS) -c $< -o $@