X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=Makefile;h=41df4e29e32b079490e28afc8c7fd2eb126294c7;hb=a7334b0952ab66c17ee787e36e6d2c5ceb387de6;hp=2f739ce2acef991e5d17ec056c8d1bfd3212f3ae;hpb=ea4309869e75497ba6a97c540646cb66a157a4d9;p=elogind.git diff --git a/Makefile b/Makefile index 2f739ce2a..41df4e29e 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ COMMON= \ 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 systemadm systemd: main.o $(COMMON) $(CC) $(CFLAGS) -o $@ $^ $(LIBS) @@ -43,5 +43,11 @@ test-engine: test-engine.o $(COMMON) test-job-type: test-job-type.o $(COMMON) $(CC) $(CFLAGS) -o $@ $^ $(LIBS) +systemctl: systemctl.vala + valac -g --save-temps systemctl.vala systemd-interfaces.vala --pkg=dbus-glib-1 --pkg=posix + +systemadm: systemadm.vala + valac -g --save-temps systemadm.vala systemd-interfaces.vala --pkg=dbus-glib-1 --pkg=posix --pkg gee-1.0 --pkg gtk+-2.0 + clean: - rm -f *.o systemd test-engine + rm -f *.o systemd test-engine systemctl systemadm