diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-02-03 12:39:12 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-02-03 12:40:09 +0100 |
commit | 501c7d0b77607fe858911b1c94070b63b6cc221e (patch) | |
tree | 3cfb500a32ad09b426c3be6e57d1a7988c085fa4 /Makefile | |
parent | b548631afcd317fd0f762b324c086d1580f83a50 (diff) |
systemadm: implement basic control UI systemadm
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -29,7 +29,7 @@ COMMON= \ dbus-unit.o \ dbus-job.o -all: systemd test-engine test-job-type systemd-logger systemctl +all: systemd test-engine test-job-type systemd-logger systemctl systemadm systemd: main.o $(COMMON) $(CC) $(CFLAGS) -o $@ $^ $(LIBS) @@ -44,7 +44,10 @@ 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 + 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 systemctl + rm -f *.o systemd test-engine systemctl systemadm |