diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-01-21 00:51:37 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-01-21 00:51:37 +0100 |
commit | 1ffba6fe82d65f2a87b53a21c7927bca8176038c (patch) | |
tree | a7e25b779085247caa54b1e9ee8424f98e4c44bb /Makefile | |
parent | 9ea024f6b5a9626ddabeb4c4d4385481b52d211e (diff) |
fix job merging
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -3,7 +3,7 @@ LIBS=-lrt COMMON=name.o util.o set.o hashmap.o strv.o job.o manager.o conf-parser.o load-fragment.o socket-util.o log.o -all: systemd test-engine +all: systemd test-engine test-job-type systemd: main.o $(COMMON) $(CC) $(CFLAGS) -o $@ $^ $(LIBS) @@ -11,5 +11,8 @@ systemd: main.o $(COMMON) test-engine: test-engine.o $(COMMON) $(CC) $(CFLAGS) -o $@ $^ $(LIBS) +test-job-type: test-job-type.o $(COMMON) + $(CC) $(CFLAGS) -o $@ $^ $(LIBS) + clean: rm -f *.o systemd test-engine |