Skip to content

Commit

Permalink
systemadm: implement basic control UI systemadm
Browse files Browse the repository at this point in the history
  • Loading branch information
poettering committed Feb 3, 2010
1 parent b548631 commit 501c7d0
Show file tree
Hide file tree
Showing 5 changed files with 577 additions and 43 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ test-job-type
systemd-logger
systemctl
systemctl.c
systemd-interfaces.c
systemadm
systemadm.c
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
Loading

0 comments on commit 501c7d0

Please sign in to comment.