diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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) |