X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=Makefile;h=5a60eac9ff928fb3b511d5f2eb6f910f55a2746f;hp=d61e14b63a81a8b5be00763d7267037e25549d11;hb=5630af71d72a2fa8142886ca2fb37e69a1906bca;hpb=b52429d4e0de52b89c7d043164aa1ac720e9179f diff --git a/Makefile b/Makefile index d61e14b63..5a60eac9f 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -CFLAGS=-Wall -Wextra -O0 -g -pipe -D_GNU_SOURCE -fdiagnostics-show-option -Wno-unused-parameter -DUNIT_PATH=\"/tmp/does/not/exist\" -LIBS=-lrt -lcap +CFLAGS=-Wall -Wextra -O0 -g -pipe -D_GNU_SOURCE -fdiagnostics-show-option -Wno-unused-parameter -DUNIT_PATH=\"/tmp/does/not/exist\" `pkg-config --cflags libudev dbus-1` +LIBS=-lrt -lcap `pkg-config --libs libudev dbus-1` COMMON= \ unit.o \ @@ -21,11 +21,15 @@ COMMON= \ snapshot.o \ socket.o \ timer.o \ - load-fstab.o \ load-dropin.o \ - execute.o + execute.o \ + ratelimit.o \ + dbus.o \ + dbus-manager.o \ + dbus-unit.o \ + dbus-job.o -all: systemd test-engine test-job-type systemd-logger +all: systemd test-engine test-job-type systemd-logger systemctl systemd: main.o $(COMMON) $(CC) $(CFLAGS) -o $@ $^ $(LIBS) @@ -39,5 +43,8 @@ test-engine: test-engine.o $(COMMON) test-job-type: test-job-type.o $(COMMON) $(CC) $(CFLAGS) -o $@ $^ $(LIBS) +systemctl: systemctl.vala + valac --save-temps systemctl.vala --pkg=dbus-glib-1 --pkg=posix + clean: - rm -f *.o systemd test-engine + rm -f *.o systemd test-engine systemctl