xe20171029_135139
This commit is contained in:
parent
ff7c816f7e
commit
0f99d4c2f2
1 changed files with 6 additions and 2 deletions
8
Makefile
8
Makefile
|
@ -7,14 +7,18 @@ COMMIT = $(shell date "+xe%Y%m%d_%H%M%S")
|
||||||
SUBDIRS := $(shell find $(DIR) -type d -print)
|
SUBDIRS := $(shell find $(DIR) -type d -print)
|
||||||
FILTER := $(abspath .git% %.deb .publish-git .builddeb %.swp Makefile)
|
FILTER := $(abspath .git% %.deb .publish-git .builddeb %.swp Makefile)
|
||||||
FILTERORIG := $(abspath .git% %.deb .publish-git .builddeb %.swp Makefile) $(shell test -e noupdate.files && cat noupdate.files) /DEBIAN%
|
FILTERORIG := $(abspath .git% %.deb .publish-git .builddeb %.swp Makefile) $(shell test -e noupdate.files && cat noupdate.files) /DEBIAN%
|
||||||
FILES := $(filter-out $(FILTER), $(abspath $(shell find . -mindepth 1 -type f -print) ))
|
#FILES := $(filter-out $(FILTER), $(abspath $(shell find . -mindepth 1 -type f -print) ))
|
||||||
ORIGS := $(filter-out $(FILTERORIG), $(realpath $(subst ./$(DIR),,$(shell sudo find . -mindepth 2 -type f -print))))
|
#ORIGS := $(filter-out $(FILTERORIG), $(realpath $(subst ./$(DIR),,$(shell sudo find . -mindepth 2 -type f -print))))
|
||||||
|
FILES := $(filter-out $(FILTER), $(abspath $(shell find . -mindepth 1 -type f -exec echo {} \;) ))
|
||||||
|
ORIGS := $(filter-out $(FILTERORIG), $(realpath $(subst ./$(DIR),,$(shell sudo find . -mindepth 2 -type f -exec echo {] \;))))
|
||||||
FILESGIT := $(filter-out $(abspath .git%), $(abspath $(shell find . -mindepth 1 -type f -print)))
|
FILESGIT := $(filter-out $(abspath .git%), $(abspath $(shell find . -mindepth 1 -type f -print)))
|
||||||
|
|
||||||
#all: $(DIR)/DEBIAN/control
|
#all: $(DIR)/DEBIAN/control
|
||||||
|
|
||||||
#$(DIR)/DEBIAN/control: $(FILES)
|
#$(DIR)/DEBIAN/control: $(FILES)
|
||||||
|
|
||||||
|
-include Makefile.repo
|
||||||
|
|
||||||
all: .builddeb
|
all: .builddeb
|
||||||
@#echo FILE $(FILESGIT)
|
@#echo FILE $(FILESGIT)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue