diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index cf75c866c..32de868c4 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -7,7 +7,7 @@ CFLAGS = -Wall .PHONY: clean install $(DIRS) -all: $(BASE)/depslist $(BASE)/hdlist $(DIRS) xhost+ install +all: $(BASE)/depslist $(BASE)/depslist.ordered $(BASE)/hdlist $(BASE)/hdlist.cz2 $(DIRS) xhost+ install $(DIRS): make -C $@ @@ -29,9 +29,16 @@ rpm2header: %: %.c ddcprobe/ddcxinfos: $(MAKE) -C ddcprobe ddcxinfos +$(BASE)/depslist.ordered: $(BASE)/depslist + ./orderdepslist $< + $(BASE)/depslist: $(BASE)/hdlist gendepslist ./gendepslist -h $@ $< +$(BASE)/hdlist.cz2: $(BASE)/depslist.ordered $(RPMS) + rm -rf tmp + ./build_hdlist_cz2 $(ROOTDEST) tmp + $(BASE)/hdlist: $(RPMS) $(MAKE) install ./genhdlist $(ROOTDEST) |