Skip to content

Commit

Permalink
implement trivial socket activated logger daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
poettering committed Jan 27, 2010
1 parent ab6e5f1 commit b52429d
Show file tree
Hide file tree
Showing 7 changed files with 515 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ systemd
*.o
test-engine
test-job-type
systemd-logger
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,14 @@ COMMON= \
load-dropin.o \
execute.o

all: systemd test-engine test-job-type
all: systemd test-engine test-job-type systemd-logger

systemd: main.o $(COMMON)
$(CC) $(CFLAGS) -o $@ $^ $(LIBS)

systemd-logger: logger.o $(COMMON)
$(CC) $(CFLAGS) -o $@ $^ $(LIBS)

test-engine: test-engine.o $(COMMON)
$(CC) $(CFLAGS) -o $@ $^ $(LIBS)

Expand Down
Loading

0 comments on commit b52429d

Please sign in to comment.