chiark / gitweb /
add minimal logging framework
[elogind.git] / Makefile
index 6f41e8878cc9c5039c607f9fc4d05a0afeb0919e..f4bbb2aef59188d7de1b017bc2a77c9b5cd3f042 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,15 @@
 CFLAGS=-Wall -Wextra -O0 -g -pipe -D_GNU_SOURCE -fdiagnostics-show-option -Wno-unused-parameter
 LIBS=-lrt
 
-systemd: main.o name.o util.o set.o hashmap.o strv.o job.o manager.o conf-parser.o
+COMMON=name.o util.o set.o hashmap.o strv.o job.o manager.o conf-parser.o load-fragment.o socket-util.o log.o
+
+all: systemd test-engine
+
+systemd: main.o $(COMMON)
+       $(CC) $(CFLAGS) -o $@ $^  $(LIBS)
+
+test-engine: test-engine.o $(COMMON)
        $(CC) $(CFLAGS) -o $@ $^  $(LIBS)
 
 clean:
-       rm -f *.o systemd
+       rm -f *.o systemd test-engine